From 32cba376c211abe3c96f0d39b4d4eff65c104c0a Mon Sep 17 00:00:00 2001 From: Christopher Uhlig Date: Fri, 25 Oct 2024 15:54:49 +0200 Subject: [PATCH] adjusted function prototype --- src/repl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/repl.c b/src/repl.c index 931e25e..9fae849 100644 --- a/src/repl.c +++ b/src/repl.c @@ -6,14 +6,14 @@ /* By: chuhlig +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/24 16:07:04 by dkaiser #+# #+# */ -/* Updated: 2024/10/17 15:25:48 by dkaiser ### ########.fr */ +/* Updated: 2024/10/22 17:05:14 by chuhlig ### ########.fr */ /* */ /* ************************************************************************** */ #include "../include/minishell.h" #include "token.h" -void repl(const char *prompt, t_env *env) +void repl(const char *prompt, t_env **env) { char *input; t_token *token_list; -- 2.47.2