aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast.hpp
blob: b73506f1d4b382455304b59b35b99d52c779de67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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