diff options
| author | nass1pro <nass1pro@gmail.com> | 2020-06-15 13:00:24 +0200 |
|---|---|---|
| committer | nass1pro <nass1pro@gmail.com> | 2020-06-15 13:00:24 +0200 |
| commit | a7dae7d30b7087bcd9972792a2ee1248e081cfce (patch) | |
| tree | 21c567c81a542991eb27eb4056b74df8a8d8cc0e /include/parser.h | |
| parent | 72ee131562574c4a6cb69800cdd81268b52ace84 (diff) | |
| download | minishell-a7dae7d30b7087bcd9972792a2ee1248e081cfce.tar.gz minishell-a7dae7d30b7087bcd9972792a2ee1248e081cfce.tar.bz2 minishell-a7dae7d30b7087bcd9972792a2ee1248e081cfce.zip | |
ADD redir_parse draft
Diffstat (limited to 'include/parser.h')
| -rw-r--r-- | include/parser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/parser.h b/include/parser.h index 099d4aa..2e6bae1 100644 --- a/include/parser.h +++ b/include/parser.h @@ -39,7 +39,9 @@ t_ret *parse(t_ftlst *input); t_ast *parse_cmd(t_ast *ast, t_ftlst *ret); +t_ast *parse_redir(t_ast *ast, t_ftlst *rest); int parse_cmd_str_true_false(enum e_token_tag tag); +int parse_redir_true_false(enum e_token_tag tag); #endif |
