File: tsearch.h

package info (click to toggle)
harp 1.5%2Bdata-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 54,032 kB
  • sloc: xml: 286,510; ansic: 143,710; yacc: 1,910; python: 913; makefile: 600; lex: 574; sh: 69
file content (14 lines) | stat: -rw-r--r-- 333 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TSEARCH_H
#define TSEARCH_H

void * tsearch(const void *vkey, void **vrootp,
    int (*compar)(const void *, const void *));

void * tfind(const void *vkey, void **vrootp,
    int (*compar)(const void *, const void *));

void * tdelete(const void *vkey, void **vrootp,
    int (*compar)(const void *, const void *));


#endif