diff options
Diffstat (limited to 'src/include/print.h')
-rw-r--r-- | src/include/print.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/include/print.h b/src/include/print.h new file mode 100644 index 0000000..9dbecbd --- /dev/null +++ b/src/include/print.h @@ -0,0 +1,16 @@ +#ifndef PRINT_H +#define PRINT_H +#include "./ast.h" + +void print_string(ast_t *str); + +void print_int(ast_t *i); + +void print_bool(ast_t *b); + +void print_float(ast_t *f); + +void print_func(ast_t *f); + +void print(ast_t *res); +#endif |