aboutsummaryrefslogtreecommitdiff
path: root/strbst.h
blob: 4605bcfab2789db02593f4d8f3be53af5e840915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __STRBST_H__
#define __STRBST_H__

typedef struct strbst strbst;

strbst* newbst(void);

void insbst(strbst* bst, char* ind, void* data);

void* query(strbst* bst, char* ind);

void printbst(strbst* bst);

#endif