aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tree.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tree.c b/src/tree.c
index 6867949..ab3a962 100644
--- a/src/tree.c
+++ b/src/tree.c
@@ -1,7 +1,15 @@
#include "include/tree.h"
TREE_t* tree_init(int type) {
+ // give the tree just enough room
TREE_t* tree = calloc(1, sizeof(struct TREE_STRUC));
+ tree->type = type;
+
+ tree->VAR_DEF_name = NULL;
+ tree->VAR_DEF_value = NULL;
+ tree->VAR_name = NULL;
+
+
return tree;
}