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

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

ast_Top *parseAST();

#endif