diff options
| author | Robert Drehmel <robert@FreeBSD.org> | 2002-10-16 14:00:46 +0000 |
|---|---|---|
| committer | Robert Drehmel <robert@FreeBSD.org> | 2002-10-16 14:00:46 +0000 |
| commit | e768c1be41aefcb7cf8fb19b12cf21d523dc4cdf (patch) | |
| tree | f842a8fc345135dd3f0a7b4514d049f10569985e /include | |
| parent | dc51023cb319a421c1d1f7bfb06f90e5e0fb500a (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/search.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/search.h b/include/search.h index a62f772b731c..566aac84918e 100644 --- a/include/search.h +++ b/include/search.h @@ -38,21 +38,25 @@ typedef struct node { char *key; struct node *llink, *rlink; } node_t; + +struct que_elem { + struct que_elem *next; + struct que_elem *prev; +}; #endif __BEGIN_DECLS int hcreate(size_t); void hdestroy(void); ENTRY *hsearch(ENTRY, ACTION); +void insque(void *, void *); +void remque(void *); void *tdelete(const void * __restrict, void ** __restrict, int (*)(const void *, const 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)); -/* - * XXX missing insque(), lsearch(), remque(). - */ __END_DECLS #endif /* !_SEARCH_H_ */ |
