aboutsummaryrefslogtreecommitdiff
path: root/strbst.c
diff options
context:
space:
mode:
Diffstat (limited to 'strbst.c')
-rw-r--r--strbst.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/strbst.c b/strbst.c
index 2301917..7bb53b1 100644
--- a/strbst.c
+++ b/strbst.c
@@ -8,18 +8,6 @@
typedef char height;
-typedef struct strbstnode {
- char* ind;
- void* data;
- struct strbstnode* left;
- struct strbstnode* right;
- int ht;
-} strbstnode;
-
-struct strbst {
- strbstnode* head;
-};
-
strbst* newbst(void) {
strbst* out = malloc(sizeof(strbst));
out->head = NULL;