fix: added header guards, and some testing purpose autotools rules

This commit is contained in:
Guillem George 2026-01-07 20:18:11 +01:00
parent 269f50a367
commit 919ea7b1ba
9 changed files with 88 additions and 14 deletions

View file

@ -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 */