From 98f0c51119f9d42d733f44cb516b1c2bcd9061af Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 4 Feb 2024 15:23:59 -0500 Subject: Initial commit --- parse.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 parse.h (limited to 'parse.h') diff --git a/parse.h b/parse.h new file mode 100644 index 00000000..aaaa671a --- /dev/null +++ b/parse.h @@ -0,0 +1,9 @@ +#pragma once + +#include + +#include "ast.h" + +type_ast_t *parse_type_str(const char *str); +ast_t *parse_expression_str(const char *str); +ast_t *parse_file(sss_file_t *file, jmp_buf *on_err); -- cgit v1.2.3