tsearch.h (606B)
1 /*- 2 * Written by J.T. Conklin <jtc@netbsd.org> 3 * Public domain. 4 * 5 * $NetBSD: search.h,v 1.12 1999/02/22 10:34:28 christos Exp $ 6 */ 7 8 #ifndef _TSEARCH_H_ 9 #define _TSEARCH_H_ 10 11 #ifdef __cplusplus 12 extern "C" 13 { 14 #endif /* __cplusplus */ 15 16 void *tdelete (const void *, void **, 17 int (*)(const void *, const void *)); 18 19 void *tfind (const void *, void * const *, 20 int (*)(const void *, const void *)); 21 22 void *tsearch (const void *, void **, 23 int (*)(const void *, const void *)); 24 25 #ifdef __cplusplus 26 } 27 #endif /* __cplusplus */ 28 29 #endif /* !_TSEARCH_H_ */