feat(parser): redirections
This commit is contained in:
parent
04ff7376eb
commit
8a5c589742
17 changed files with 78 additions and 108 deletions
|
|
@ -6,12 +6,12 @@
|
|||
struct ast_neg
|
||||
{
|
||||
bool negation; // True negates the child's output
|
||||
struct ast* child;
|
||||
struct ast *child;
|
||||
};
|
||||
|
||||
bool ast_is_neg(struct ast *node);
|
||||
struct ast_neg *ast_get_neg(struct ast *node);
|
||||
struct ast *ast_create_neg(bool negation, struct ast* child);
|
||||
void ast_free_neg(struct ast_neg* node);
|
||||
struct ast *ast_create_neg(bool negation, struct ast *child);
|
||||
void ast_free_neg(struct ast_neg *node);
|
||||
|
||||
#endif /* ! AST_NEG_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue