aboutsummaryrefslogtreecommitdiff
path: root/interpreter/print.h
diff options
context:
space:
mode:
authorCamil Staps2016-08-29 19:55:21 +0200
committerCamil Staps2016-08-29 19:55:21 +0200
commitc62d7748aace9ae1234c53703fe8231236c9e123 (patch)
treec0c6c6017914cfe9b3b8995759a454564bb6faf3 /interpreter/print.h
parentmatch EXPR_APP (diff)
Currying arguments and Code applications
Diffstat (limited to 'interpreter/print.h')
-rw-r--r--interpreter/print.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/interpreter/print.h b/interpreter/print.h
index 5909087..544786f 100644
--- a/interpreter/print.h
+++ b/interpreter/print.h
@@ -2,6 +2,7 @@
#define _H_PRINT
#include "syntax.h"
+#include "graphs.h"
void print_token(token*);
void print_token_list(token_list*);
@@ -10,4 +11,6 @@ void print_expression(expression*);
void print_rewrite_rule(rewrite_rule*);
void print_fuspel(fuspel*);
+void print_node(struct node*);
+
#endif