summaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-08-23 22:18:16 +0200
committertomsmeding <tom.smeding@gmail.com>2016-08-23 22:18:16 +0200
commitba57b2de9e84af94c68a94a5d0be08d5e25ab921 (patch)
tree40b8d3278d08214f1eba3a74eb2eebe033fb906d /ast.h
parentcac651cd88f8da1e5957b0cc13fa25d79e1887fc (diff)
Add builtin_define
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ast.h b/ast.h
index 6ec6ce8..99aa2d8 100644
--- a/ast.h
+++ b/ast.h
@@ -85,6 +85,7 @@ char* ast_stringify(const AST *ast);
AST* ast_list(int len,AST **nodes); //these convenience functions DO NOT copy their arguments
AST* ast_lambda(lambdafunc_t cfunc,AST *body);
+AST* ast_lambdaarg(int idx);
AST* ast_word(char *word);
AST* ast_number(double num);
AST* ast_string(char *str,int len);