fix: added header guards, and some testing purpose autotools rules
This commit is contained in:
parent
269f50a367
commit
919ea7b1ba
9 changed files with 88 additions and 14 deletions
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef AST_H
|
||||
#define AST_H
|
||||
|
||||
|
||||
enum ast_type
|
||||
{
|
||||
AST_NULL = 0,
|
||||
ATS_IF,
|
||||
AST_CMD
|
||||
};
|
||||
|
||||
union ast_union
|
||||
{
|
||||
};
|
||||
|
||||
struct ast
|
||||
{
|
||||
enum ast_type type;
|
||||
union ast_union data;
|
||||
};
|
||||
|
||||
#endif /* ! AST_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue