aboutsummaryrefslogtreecommitdiff
path: root/include/parser.h
diff options
context:
space:
mode:
authornass1pro <nass1pro@gmail.com>2020-06-15 17:43:03 +0200
committernass1pro <nass1pro@gmail.com>2020-06-15 17:43:03 +0200
commitb72b43e5715424f01626f31f74f0c0d83d7bfb24 (patch)
treeac0d0a402407809520230d7fd31184beedf3f70f /include/parser.h
parentc64a7a8fca764c1f0fe8e4a8e28526e1de49f707 (diff)
downloadminishell-b72b43e5715424f01626f31f74f0c0d83d7bfb24.tar.gz
minishell-b72b43e5715424f01626f31f74f0c0d83d7bfb24.tar.bz2
minishell-b72b43e5715424f01626f31f74f0c0d83d7bfb24.zip
Change name function parse
Diffstat (limited to 'include/parser.h')
-rw-r--r--include/parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/parser.h b/include/parser.h
index 2e6bae1..2bfa9d5 100644
--- a/include/parser.h
+++ b/include/parser.h
@@ -38,8 +38,8 @@
*/
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);
+t_ast *push_cmd(t_ast *ast, t_ftlst *ret);
+t_ast *push_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);