aboutsummaryrefslogtreecommitdiff
path: root/strbst.h
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-05-24 01:42:11 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-05-24 01:42:11 -0400
commit37cd5bb9e3742f4893a14e04d49a4ba9716455c8 (patch)
tree10120e0810082a332e10647c99c3f2c2cc722374 /strbst.h
parent3263fcbb58566fc1fe1ec3891fccd858cb4e6894 (diff)
removed opacity of strbst
Diffstat (limited to 'strbst.h')
-rw-r--r--strbst.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/strbst.h b/strbst.h
index 4605bcf..a58b8d3 100644
--- a/strbst.h
+++ b/strbst.h
@@ -1,6 +1,18 @@
#ifndef __STRBST_H__
#define __STRBST_H__
+typedef struct strbstnode {
+ char* ind;
+ void* data;
+ struct strbstnode* left;
+ struct strbstnode* right;
+ int ht;
+} strbstnode;
+
+struct strbst {
+ strbstnode* head;
+};
+
typedef struct strbst strbst;
strbst* newbst(void);