From 87b90103930d83d74baa998866b0995cb8887d51 Mon Sep 17 00:00:00 2001 From: Christopher Uhlig Date: Sat, 25 Jan 2025 13:01:10 +0100 Subject: fixed leaks in tokenizer and collectargs also fixed seg for < > and improved value add by $ use --- include/minishell.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/minishell.h') diff --git a/include/minishell.h b/include/minishell.h index 06abb04..97e22cb 100644 --- a/include/minishell.h +++ b/include/minishell.h @@ -6,7 +6,7 @@ /* By: chuhlig +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/22 17:14:49 by dkaiser #+# #+# */ -/* Updated: 2025/01/21 20:20:09 by chuhlig ### ########.fr */ +/* Updated: 2025/01/23 23:17:00 by chuhlig ### ########.fr */ /* */ /* ************************************************************************** */ @@ -34,7 +34,7 @@ void repl(const char *prompt, t_env **env, int *promptflag); t_node *parse(t_token *tokens, t_env **env); t_node *parse_cmd(t_token *tokens, t_env **env); -t_redirection *collect_redirs(t_token **tokens, t_env *env, t_list **cf); +t_redirection *collect_redirs(t_token **tokens, t_env *env, t_list **create_files); void print_ast(t_node *ast); -- cgit v1.2.3