aboutsummaryrefslogtreecommitdiff
path: root/src/tree.c
blob: 6867949c3f62887d46f0acb6eebd703148400cac (plain) (blame)
1
2
3
4
5
6
7
#include "include/tree.h"

TREE_t* tree_init(int type) {
   TREE_t* tree = calloc(1, sizeof(struct TREE_STRUC));

   return tree;
}