Remove "[Add new features here]" for 2.27
[glibc.git] / conform / data / search.h-data
blobe99f7e6c1d60b7a377e6072eb7fcd7e1bcbba7af
1 #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX && !defined POSIX2008
2 type ENTRY
3 type {struct entry}
4 element {struct entry} {char*} key
5 element {struct entry} {void*} data
7 type ACTION
8 constant FIND
9 constant ENTER
11 type VISIT
12 constant preorder
13 constant postorder
14 constant endorder
15 constant leaf
17 function int hcreate (size_t)
18 function void hdestroy (void)
19 function {ENTRY*} hsearch (ENTRY, ACTION)
20 #ifndef XPG4
21 function void insque (void*, void*)
22 #endif
23 function {void*} lfind (const void*, const void*, size_t*, size_t, int (*)(const void*, const void*))
24 function {void*} lsearch (const void*, void*, size_t*, size_t, int (*)(const void*, const void*))
25 #ifndef XPG4
26 function void remque (void*)
27 #endif
28 function {void*} tdelete (const void*, void**, int(*)(const void*, const void*))
29 function {void*} tfind (const void*, void*const*, int(*)(const void*, const void*))
30 function {void*} tsearch (const void*, void**, int(*)(const void*, const void*))
31 function void twalk (const void*, void (*) (const void*, VISIT, int))
33 allow *_t
34 #endif