aboutsummaryrefslogtreecommitdiff
path: root/interpreter/print.h
diff options
context:
space:
mode:
Diffstat (limited to 'interpreter/print.h')
-rw-r--r--interpreter/print.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/interpreter/print.h b/interpreter/print.h
index 544786f..047a7f7 100644
--- a/interpreter/print.h
+++ b/interpreter/print.h
@@ -4,6 +4,8 @@
#include "syntax.h"
#include "graphs.h"
+#include <stdio.h>
+
void print_token(token*);
void print_token_list(token_list*);
@@ -13,4 +15,8 @@ void print_fuspel(fuspel*);
void print_node(struct node*);
+#ifdef _FUSPEL_DEBUG
+void print_node_to_file(struct node*, FILE*);
+#endif
+
#endif