summaryrefslogtreecommitdiff
path: root/lib/tree.h
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-07-26 01:21:56 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-07-26 01:21:56 -0400
commitde8c6398f269c9fa14842c170b5b21651e817f9b (patch)
tree09b1fab1bf6e9993becceba305f8a858c1069615 /lib/tree.h
parent94f7d887981f0626f166f5645fa98115d4f9a478 (diff)
downloadc++-de8c6398f269c9fa14842c170b5b21651e817f9b.tar.gz
c++-de8c6398f269c9fa14842c170b5b21651e817f9b.tar.bz2
c++-de8c6398f269c9fa14842c170b5b21651e817f9b.zip
removed some files that are now unused
Diffstat (limited to 'lib/tree.h')
-rw-r--r--lib/tree.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/tree.h b/lib/tree.h
deleted file mode 100644
index dc22c2d..0000000
--- a/lib/tree.h
+++ /dev/null
@@ -1,22 +0,0 @@
-
-#pragma once
-
-#include <inttypes.h>
-#include <stdlib.h>
-#include <stdbool.h>
-
-#include "types.h"
-
-typedef struct node_t {
- v_t value;
- v_t level;
- struct node_t *left;
- struct node_t *right;
-} node_t;
-
-void tree_insert(node_t **T, v_t x);
-
-bool tree_contains(node_t *T, v_t x);
-
-void tree_freeNode(node_t *T);
-