From b72b43e5715424f01626f31f74f0c0d83d7bfb24 Mon Sep 17 00:00:00 2001 From: nass1pro Date: Mon, 15 Jun 2020 17:43:03 +0200 Subject: Change name function parse --- include/parser.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/parser.h') 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); -- cgit