Add a function to print the parse tree.

This commit is contained in:
2018-02-25 23:09:35 -08:00
parent c18a5e49de
commit 65071d47b3
3 changed files with 57 additions and 1 deletions

8
include/debug.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef LIBABACUS_DEBUG_H
#define LIBABACUS_DEBUG_H
#include "tree.h"
void libab_debug_print_tree(libab_tree* print);
#endif