diff options
Diffstat (limited to 'interpreter/graphs.h')
-rw-r--r-- | interpreter/graphs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/interpreter/graphs.h b/interpreter/graphs.h index a577095..204993c 100644 --- a/interpreter/graphs.h +++ b/interpreter/graphs.h @@ -25,6 +25,8 @@ struct node { void use_node(struct node* node, unsigned int count); void free_node(struct node* node, unsigned int count, bool free_first); +struct node*** flatten_app_args(struct node** from, bool remove_redirs); + void remove_redirects(struct node *node); void cpy_expression_to_node(struct node* dst, expression* src); |