From: Christopher Uhlig Date: Fri, 25 Oct 2024 13:54:49 +0000 (+0200) Subject: adjusted function prototype X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;h=32cba376c211abe3c96f0d39b4d4eff65c104c0a;p=42%2Fminishell.git adjusted function prototype --- 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;