aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast.hpp
blob: 787e928ff3f7e32c5fbcfdae620f8ac4e2aa3367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef AST_HPP
#define AST_HPP

#include "ast_base.hpp"
#include "ast_statement.hpp"
#include "ast_function.hpp"
#include "ast_declaration.hpp"
#include "ast_primitives.hpp"
#include "ast_top.hpp"

ast_Top *parseAST();

#endif