2002-10-03 06:31:16 +00:00
|
|
|
/*-
|
2014-07-21 15:22:48 +00:00
|
|
|
* Written by J.T. Conklin <jtc@NetBSD.org>
|
2000-07-01 06:55:11 +00:00
|
|
|
* Public domain.
|
2002-10-03 06:31:16 +00:00
|
|
|
*
|
2014-07-21 15:22:48 +00:00
|
|
|
* $NetBSD: search.h,v 1.16 2005/02/03 04:39:32 perry Exp $
|
2002-10-03 06:31:16 +00:00
|
|
|
* $FreeBSD$
|
2000-07-01 06:55:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SEARCH_H_
|
|
|
|
#define _SEARCH_H_
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2002-08-21 16:20:02 +00:00
|
|
|
#include <sys/_types.h>
|
2000-07-01 06:55:11 +00:00
|
|
|
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _SIZE_T_DECLARED
|
|
|
|
typedef __size_t size_t;
|
|
|
|
#define _SIZE_T_DECLARED
|
2000-07-01 06:55:11 +00:00
|
|
|
#endif
|
|
|
|
|
2002-10-03 06:31:16 +00:00
|
|
|
typedef struct entry {
|
|
|
|
char *key;
|
|
|
|
void *data;
|
2000-07-01 06:55:11 +00:00
|
|
|
} ENTRY;
|
|
|
|
|
2002-10-03 06:31:16 +00:00
|
|
|
typedef enum {
|
2000-07-01 06:55:11 +00:00
|
|
|
FIND, ENTER
|
|
|
|
} ACTION;
|
|
|
|
|
2002-10-03 06:31:16 +00:00
|
|
|
typedef enum {
|
2000-07-01 06:55:11 +00:00
|
|
|
preorder,
|
|
|
|
postorder,
|
|
|
|
endorder,
|
|
|
|
leaf
|
|
|
|
} VISIT;
|
|
|
|
|
|
|
|
#ifdef _SEARCH_PRIVATE
|
2016-10-13 18:25:40 +00:00
|
|
|
typedef struct __posix_tnode {
|
|
|
|
void *key;
|
|
|
|
struct __posix_tnode *llink, *rlink;
|
|
|
|
signed char balance;
|
|
|
|
} posix_tnode;
|
2002-10-16 14:00:46 +00:00
|
|
|
|
|
|
|
struct que_elem {
|
|
|
|
struct que_elem *next;
|
|
|
|
struct que_elem *prev;
|
|
|
|
};
|
2016-10-13 18:25:40 +00:00
|
|
|
#else
|
|
|
|
typedef void posix_tnode;
|
2000-07-01 06:55:11 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-21 15:22:48 +00:00
|
|
|
#if __BSD_VISIBLE
|
|
|
|
struct hsearch_data {
|
2015-12-27 07:50:11 +00:00
|
|
|
struct __hsearch *__hsearch;
|
2014-07-21 15:22:48 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2000-07-01 06:55:11 +00:00
|
|
|
__BEGIN_DECLS
|
2002-03-23 17:24:55 +00:00
|
|
|
int hcreate(size_t);
|
|
|
|
void hdestroy(void);
|
|
|
|
ENTRY *hsearch(ENTRY, ACTION);
|
2014-07-18 16:21:15 +00:00
|
|
|
void insque(void *, void *);
|
2002-10-16 14:29:23 +00:00
|
|
|
void *lfind(const void *, const void *, size_t *, size_t,
|
|
|
|
int (*)(const void *, const void *));
|
|
|
|
void *lsearch(const void *, void *, size_t *, size_t,
|
|
|
|
int (*)(const void *, const void *));
|
2002-10-16 14:00:46 +00:00
|
|
|
void remque(void *);
|
2016-10-13 18:25:40 +00:00
|
|
|
void *tdelete(const void * __restrict, posix_tnode ** __restrict,
|
2002-08-14 21:16:41 +00:00
|
|
|
int (*)(const void *, const void *));
|
2016-10-13 18:25:40 +00:00
|
|
|
posix_tnode *
|
|
|
|
tfind(const void *, posix_tnode * const *,
|
2002-10-03 06:31:16 +00:00
|
|
|
int (*)(const void *, const void *));
|
2016-10-13 18:25:40 +00:00
|
|
|
posix_tnode *
|
|
|
|
tsearch(const void *, posix_tnode **,
|
|
|
|
int (*)(const void *, const void *));
|
|
|
|
void twalk(const posix_tnode *, void (*)(const posix_tnode *, VISIT, int));
|
2014-07-21 15:22:48 +00:00
|
|
|
|
|
|
|
#if __BSD_VISIBLE
|
|
|
|
int hcreate_r(size_t, struct hsearch_data *);
|
|
|
|
void hdestroy_r(struct hsearch_data *);
|
|
|
|
int hsearch_r(ENTRY, ACTION, ENTRY **, struct hsearch_data *);
|
|
|
|
#endif
|
|
|
|
|
2000-07-01 06:55:11 +00:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* !_SEARCH_H_ */
|