diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-05 18:41:13 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-05 18:41:13 -0800 |
commit | 75bffac83e8e8a30ae7643a5d830e580d1ffee65 (patch) | |
tree | 56e6ea17c8110f9383f12ef1fa03ad60ddec3962 /src/include/ast.h | |
parent | 346507f767d71c69e55b9f663449eb39e1bc7e54 (diff) |
add more primitives
Diffstat (limited to 'src/include/ast.h')
-rw-r--r-- | src/include/ast.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/ast.h b/src/include/ast.h index c99564d..8b60490 100644 --- a/src/include/ast.h +++ b/src/include/ast.h @@ -52,4 +52,6 @@ ast_t *init_ast_function(ast_t *car, ast_t *cdr); ast_t *init_ast_root(ast_t **subnodes, int size); void ast_type_print(ast_t *e); + +bool is_proper_list(ast_t *e); #endif |