aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'c_parser/include/ast.hpp')
-rw-r--r--c_parser/include/ast.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/c_parser/include/ast.hpp b/c_parser/include/ast.hpp
new file mode 100644
index 0000000..b73506f
--- /dev/null
+++ b/c_parser/include/ast.hpp
@@ -0,0 +1,14 @@
+#ifndef AST_HPP
+#define AST_HPP
+
+#include "ast_base.hpp"
+#include "ast_statement.hpp"
+#include "ast_function.hpp"
+#include "ast_declaration.hpp"
+#include "ast_expression.hpp"
+#include "ast_primitives.hpp"
+#include "ast_top.hpp"
+
+ast_Top *parseAST();
+
+#endif