#include "tsearch.h"
#include <stdlib.h>
Go to the source code of this file.
|
void * | tsearch (const void *vkey, void **vrootp, int(*compar)(const void *, const void *)) |
|
void * | tfind (const void *vkey, void *const *vrootp, int(*compar)(const void *, const void *)) |
|
void * | tdelete (const void *__restrict vkey, void **__restrict vrootp, int(*compar)(const void *, const void *)) |
|
◆ node_t
◆ tdelete()
void* tdelete |
( |
const void *__restrict |
vkey, |
|
|
void **__restrict |
vrootp, |
|
|
int(*)(const void *, const void *) |
compar |
|
) |
| |
◆ tfind()
void* tfind |
( |
const void * |
vkey, |
|
|
void *const * |
vrootp, |
|
|
int(*)(const void *, const void *) |
compar |
|
) |
| |
◆ tsearch()
void* tsearch |
( |
const void * |
vkey, |
|
|
void ** |
vrootp, |
|
|
int(*)(const void *, const void *) |
compar |
|
) |
| |