diff options
author | Camil Staps | 2016-08-25 20:29:50 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-25 20:29:50 +0200 |
commit | 821939c6a6eb5761708146783ebd562422c2a7f7 (patch) | |
tree | dd26b29c65431801f4ca45d6952b7806534f9c8c /interpreter/print.h | |
parent | Remove unnecessary includes (diff) |
pedantic
Diffstat (limited to 'interpreter/print.h')
-rw-r--r-- | interpreter/print.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/interpreter/print.h b/interpreter/print.h new file mode 100644 index 0000000..5909087 --- /dev/null +++ b/interpreter/print.h @@ -0,0 +1,13 @@ +#ifndef _H_PRINT +#define _H_PRINT + +#include "syntax.h" + +void print_token(token*); +void print_token_list(token_list*); + +void print_expression(expression*); +void print_rewrite_rule(rewrite_rule*); +void print_fuspel(fuspel*); + +#endif |