summaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2023-07-10 21:35:02 +0100
committerubq323 <ubq323@ubq323.website>2023-07-10 21:35:02 +0100
commit86c9a7e5c47c5c3eb70e06ea5e278de8022fd5b2 (patch)
tree4417af653c8619475ff818705760feb6edb83757 /ast.h
parentd28f04f44efffd61564951456c061ba14e1921eb (diff)
minor
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ast.h b/ast.h
index 84a3341..f352992 100644
--- a/ast.h
+++ b/ast.h
@@ -5,8 +5,9 @@
#include <stddef.h>
typedef enum {
- AST_NUM,
+ AST_NOTHING,
AST_LIST,
+ AST_NUM,
} AstTy;
struct _astnode;
@@ -29,6 +30,7 @@ struct _astnode {
AstVec astvec_new();
void astvec_append(AstVec *v, AstNode val);
+void astnode_append(AstNode *l, AstNode val);
AstNode astnode_new_num(int n);
AstNode astnode_new_list();