remove search.h (unused)
This commit is contained in:
parent
cc733ffb77
commit
81e34dc630
1 changed files with 0 additions and 15 deletions
15
src/search.h
15
src/search.h
|
|
@ -1,15 +0,0 @@
|
|||
#if defined(_MSC_VER)
|
||||
/* find or insert datum into search tree */
|
||||
void *tsearch(const void *vkey, void **vrootp,
|
||||
int (*compar)(const void *, const void *));
|
||||
|
||||
/* delete node with given key */
|
||||
void * tdelete(const void *vkey, void **vrootp,
|
||||
int (*compar)(const void *, const void *));
|
||||
|
||||
/* Walk the nodes of a tree */
|
||||
void twalk(const void *vroot, void (*action)(const void *, VISIT, int));
|
||||
|
||||
#else
|
||||
#include <search.h>
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue