diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-02 22:31:49 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-02 22:31:49 -0800 |
commit | 64feef1b9ea72adf7ba32998e9dca7d507607498 (patch) | |
tree | a409e61877bb51aa6fb2477175dabbf3dbccf298 /src/include/print.h |
a lot of stuff.
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 |