From b3f0de35b6f36a3efb8858a2f0485e12dece99c7 Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Tue, 7 May 2024 11:42:02 +0200 Subject: [PATCH] :art: add missing header --- include/gwion_parse.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 include/gwion_parse.h diff --git a/include/gwion_parse.h b/include/gwion_parse.h new file mode 100644 index 00000000..bb2cd81a --- /dev/null +++ b/include/gwion_parse.h @@ -0,0 +1,7 @@ +#pragma once +ANN Ast gwion_parse_ast(const Gwion gwion, const char *data); +ANN Func_Def gwion_parse_func_def(const Gwion gwion, const char *data, const loc_t loc); +ANN Stmt_List gwion_parse_stmt_list(const Gwion gwion, const char *data, const loc_t loc); +ANN Exp *gwion_parse_expression(const Gwion gwion, const char *data, const loc_t loc); +ANN Type_Decl *gwion_parse_type_decl(const Gwion gwion, const char *data, const loc_t loc); + -- 2.43.0