diff options
author | ubq323 <ubq323@ubq323.website> | 2023-07-10 21:35:02 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-07-10 21:35:02 +0100 |
commit | 86c9a7e5c47c5c3eb70e06ea5e278de8022fd5b2 (patch) | |
tree | 4417af653c8619475ff818705760feb6edb83757 /ast.h | |
parent | d28f04f44efffd61564951456c061ba14e1921eb (diff) |
minor
Diffstat (limited to 'ast.h')
-rw-r--r-- | ast.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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(); |