Remove i486 subdirectory
[glibc.git] / conform / data / search.h-data
blob3abbc6690f215aea236d835c4f5c59c907809eba
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 function void insque (void*, void*)
21 function {void*} lfind (const void*, const void*, size_t*, size_t, int (*)(const void*, const void*))
22 function {void*} lsearch (const void*, void*, size_t*, size_t, int (*)(const void*, const void*))
23 function void remque (void*)
24 function {void*} tdelete (const void*, void**, int(*)(const void*, const void*))
25 function {void*} tfind (const void*, void*const*, int(*)(const void*, const void*))
26 function {void*} tsearch (const void*, void**, int(*)(const void*, const void*))
27 function void twalk (const void*, void (*) (const void*, VISIT, int))
29 allow *_t
30 #endif