/
githubmirror
/
libmicrohttpd
Обзор
Документация
Войти
/
githubmirror
/
libmicrohttpd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/microhttpd/tsearch.h
29 строк
606 B
Evgeny Grin (Karlson2k)
tsearch.{h,c}: updated to the latest fixed version
03 мар 2023, 08:32
Не верифицирован
03 мар 2023, 08:32
7b22ec1
Код
Авторство
О чём код?
/*- * Written by J.T. Conklin <jtc@netbsd.org> * Public domain. * * $NetBSD: search.h,v 1.12 1999/02/22 10:34:28 christos Exp $ */ #ifndef _TSEARCH_H_ #define _TSEARCH_H_ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ void *tdelete (const void *, void **, int (*)(const void *, const void *)); void *tfind (const void *, void * const *, int (*)(const void *, const void *)); void *tsearch (const void *, void **, int (*)(const void *, const void *)); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* !_TSEARCH_H_ */