diff options
Diffstat (limited to 'comp/lucas-standen-NEA/code/tokenizer/tokenizer.h')
-rw-r--r-- | comp/lucas-standen-NEA/code/tokenizer/tokenizer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comp/lucas-standen-NEA/code/tokenizer/tokenizer.h b/comp/lucas-standen-NEA/code/tokenizer/tokenizer.h index 3cfaaf2..9e07921 100644 --- a/comp/lucas-standen-NEA/code/tokenizer/tokenizer.h +++ b/comp/lucas-standen-NEA/code/tokenizer/tokenizer.h @@ -9,4 +9,4 @@ int getBuiltIn(char *func, ast_node *node); // checks if a function is built in void expressFunction(char *function, ast_node *node); // puts a string into the ast_node struct ast_node *tokenize(char *input); // does the tokenization void printAst(ast_node *root); // shows an ast and its sub nodes - +void freeAst(ast_node *head); // frees most of the ast; |