summaryrefslogtreecommitdiff
path: root/tree.h
diff options
context:
space:
mode:
authorPedro Souza <pedro@masba.net>2024-04-03 07:27:36 -0300
committerPedro Souza <pedro@masba.net>2024-04-03 07:27:36 -0300
commitc5921aec313cefa8bd6e8f4c70f057c137133028 (patch)
treed89973053a228b4d0973796e80a1063ec4999475 /tree.h
parent131dfc5e9f810b1c1e1fb1d75e781842ec601a65 (diff)
add parethesis support
Diffstat (limited to 'tree.h')
-rw-r--r--tree.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tree.h b/tree.h
index 8df9f53..c18ccae 100644
--- a/tree.h
+++ b/tree.h
@@ -23,5 +23,6 @@ typedef struct node {
node * parse(char *str);
void fprintTree(FILE *stream, node *root, int level);
void printTree(node *root, int level);
+void free_node(node *n);
#endif