update from main archive 961105
[glibc.git] / misc / search.h
blob2103d66cbef34c29bcf2968f42c48c5affcfedff
1 /* search.h -- declarations for System V style searching functions.
2 Copyright (C) 1995, 1996 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #ifndef _SEARCH_H
21 #define _SEARCH_H 1
23 #include <sys/cdefs.h>
25 #define __need_size_t
26 #define __need_NULL
27 #include <stddef.h>
29 __BEGIN_DECLS
31 #if defined(__USE_SVID) || defined(__USE_XOPEN_EXTENDED)
32 /* Prototype structure for a linked-list data structure.
33 This is the type used by the `insque' and `remque' functions. */
35 struct qelem
37 struct qelem *q_forw;
38 struct qelem *q_back;
39 char q_data[1];
43 /* Insert ELEM into a doubly-linked list, after PREV. */
44 extern void insque __P ((void *__elem, void *__prev));
46 /* Unlink ELEM from the doubly-linked list that it is in. */
47 extern void remque __P ((void *__elem));
48 #endif
51 /* For use with hsearch(3). */
52 #ifndef __COMPAR_FN_T
53 #define __COMPAR_FN_T
54 typedef int (*__compar_fn_t) __P ((__const __ptr_t, __const __ptr_t));
55 #endif
57 /* Action which shall be performed in the call the hsearch. */
58 typedef enum
60 FIND,
61 ENTER
63 ACTION;
65 typedef struct entry
67 char *key;
68 char *data;
70 ENTRY;
72 /* Opaque type for internal use. */
73 struct _ENTRY;
75 /* Data type for reentrant functions. */
76 struct hsearch_data
78 struct _ENTRY *table;
79 unsigned int size;
80 unsigned int filled;
83 /* Family of hash table handling functions. The functions also have
84 reentrant counterparts ending with _r. */
85 extern ENTRY *hsearch __P ((ENTRY __item, ACTION __action));
86 extern int hcreate __P ((size_t __nel));
87 extern void hdestroy __P ((void));
89 extern int hsearch_r __P ((ENTRY __item, ACTION __action, ENTRY **__retval,
90 struct hsearch_data *__htab));
91 extern int hcreate_r __P ((unsigned int __nel, struct hsearch_data *htab));
92 extern void hdestroy_r __P ((struct hsearch_data *htab));
95 /* The tsearch routines are very interesting. They make many
96 assumptions about the compiler. It assumpts that the first field
97 in node must be the "key" field, which points to the datum.
98 Everything depends on that. */
99 /* For tsearch */
100 typedef enum
102 preorder,
103 postorder,
104 endorder,
105 leaf
107 VISIT;
109 extern void *tsearch __P ((__const void * __key, void **__rootp,
110 __compar_fn_t compar));
111 extern void *__tsearch __P ((__const void * __key, void **__rootp,
112 __compar_fn_t compar));
114 extern void *tfind __P ((__const void * __key, __const void ** __rootp,
115 __compar_fn_t compar));
116 extern void *__tfind __P ((__const void * __key, __const void ** __rootp,
117 __compar_fn_t compar));
119 extern void *tdelete __P ((__const void * __key, void ** __rootp,
120 __compar_fn_t compar));
121 extern void *__tdelete __P ((__const void * __key, void ** __rootp,
122 __compar_fn_t compar));
124 #ifndef __ACTION_FN_T
125 #define __ACTION_FN_T
126 typedef void (*__action_fn_t) __P ((__const void *__nodep,
127 __const VISIT __value,
128 __const int __level));
129 #endif
131 extern void twalk __P ((__const void * __root, __action_fn_t action));
133 extern void __twalk __P ((__const void * __root, __action_fn_t action));
136 /* Perform linear search for KEY by comparing by COMPAR in an array
137 [BASE,BASE+NMEMB*SIZE). */
138 extern void * lfind __P ((__const void *__key, __const void *__base,
139 size_t *__nmemb, size_t __size,
140 __compar_fn_t __compar));
142 /* Perform linear search for KEY by comparing by COMPAR function in
143 array [BASE,BASE+NMEMB*SIZE) and insert entry if not found. */
144 extern void * lsearch __P ((__const void *__key, void *__base, size_t *__nmemb,
145 size_t __size, __compar_fn_t __compar));
147 __END_DECLS
149 #endif /* search.h */