12 #include <sys/cdefs.h>
13 #include <sys/types.h>
22 #ifdef _SEARCH_PRIVATE
25 struct node *llink, *rlink;
30 void *
tdelete(
const void * __restrict,
void ** __restrict,
31 int (*)(
const void *,
const void *));
32 void *
tfind(
const void *,
void *
const *,
33 int (*)(
const void *,
const void *));
34 void *
tsearch(
const void *,
void **,
int (*)(
const void *,
const void *));
35 void twalk(
const void *,
void (*)(
const void *,
VISIT,
int));
36 void tdestroy(
void *,
void (*)(
void *));
__BEGIN_DECLS void * tdelete(const void *__restrict, void **__restrict, int(*)(const void *, const void *))
void tdestroy(void *, void(*)(void *))
void * tfind(const void *, void *const *, int(*)(const void *, const void *))
void * tsearch(const void *, void **, int(*)(const void *, const void *))
void twalk(const void *, void(*)(const void *, VISIT, int))