GNU libmicrohttpd 0.9.77
Loading...
Searching...
No Matches
tsearch.h
Go to the documentation of this file.
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
12extern "C"
13{
14#endif /* __cplusplus */
15
16void *tdelete (const void *, void **,
17 int (*)(const void *, const void *));
18
19void *tfind (const void *, void * const *,
20 int (*)(const void *, const void *));
21
22void *tsearch (const void *, void **,
23 int (*)(const void *, const void *));
24
25#ifdef __cplusplus
26}
27#endif /* __cplusplus */
28
29#endif /* !_TSEARCH_H_ */
void * tfind(const void *, void *const *, int(*)(const void *, const void *))
Definition tsearch.c:63
void * tsearch(const void *, void **, int(*)(const void *, const void *))
Definition tsearch.c:27
void * tdelete(const void *__restrict, void **__restrict, int(*)(const void *, const void *))
Definition tsearch.c:92