summaryrefslogtreecommitdiff
path: root/include/search.h
blob: e82f02832be0278d68c39c576a9bdd89f9254780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _SEARCH_H
#include <misc/search.h>

libc_hidden_proto (hcreate_r)
libc_hidden_proto (hdestroy_r)
libc_hidden_proto (hsearch_r)
libc_hidden_proto (lfind)

/* Now define the internal interfaces.  */
extern void __hdestroy (void);
extern void *__tsearch (__const void *__key, void **__rootp,
			__compar_fn_t compar);
extern void *__tfind (__const void *__key, void *__const *__rootp,
		      __compar_fn_t compar);
extern void *__tdelete (__const void *__key, void **__rootp,
			__compar_fn_t compar);
extern void __twalk (__const void *__root, __action_fn_t action);
extern void __tdestroy (void *__root, __free_fn_t freefct);
#endif