2 * Written by J.T. Conklin <jtc@NetBSD.org>
5 * $NetBSD: search.h,v 1.16 2005/02/03 04:39:32 perry Exp $
12 #include <sys/cdefs.h>
13 #include <sys/_types.h>
15 #ifndef _SIZE_T_DECLARED
16 typedef __size_t
size_t;
17 #define _SIZE_T_DECLARED
20 typedef struct entry
{
36 #ifdef _SEARCH_PRIVATE
39 struct node
*llink
, *rlink
;
44 struct que_elem
*next
;
45 struct que_elem
*prev
;
51 struct __hsearch
*__hsearch
;
58 ENTRY
*hsearch(ENTRY
, ACTION
);
59 void insque(void *, void *);
60 void *lfind(const void *, const void *, size_t *, size_t,
61 int (*)(const void *, const void *));
62 void *lsearch(const void *, void *, size_t *, size_t,
63 int (*)(const void *, const void *));
65 void *tdelete(const void * __restrict
, void ** __restrict
,
66 int (*)(const void *, const void *));
67 void *tfind(const void *, void * const *,
68 int (*)(const void *, const void *));
69 void *tsearch(const void *, void **, int (*)(const void *, const void *));
70 void twalk(const void *, void (*)(const void *, VISIT
, int));
73 int hcreate_r(size_t, struct hsearch_data
*);
74 void hdestroy_r(struct hsearch_data
*);
75 int hsearch_r(ENTRY
, ACTION
, ENTRY
**, struct hsearch_data
*);
80 #endif /* !_SEARCH_H_ */