diff options
author | Camil Staps | 2016-08-29 19:55:21 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-29 19:55:21 +0200 |
commit | c62d7748aace9ae1234c53703fe8231236c9e123 (patch) | |
tree | c0c6c6017914cfe9b3b8995759a454564bb6faf3 /interpreter/print.h | |
parent | match EXPR_APP (diff) |
Currying arguments and Code applications
Diffstat (limited to 'interpreter/print.h')
-rw-r--r-- | interpreter/print.h | 3 |
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 |