aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Uhlig2024-10-25 15:54:49 +0200
committerChristopher Uhlig2024-10-25 15:54:49 +0200
commit32cba376c211abe3c96f0d39b4d4eff65c104c0a (patch)
tree091b69f4d39a219e25c42f736f0fcbb284815372
parent46003a3dcff9f8cdbc89f0c371785fe3715b0769 (diff)
downloadminishell-32cba376c211abe3c96f0d39b4d4eff65c104c0a.tar.gz
minishell-32cba376c211abe3c96f0d39b4d4eff65c104c0a.zip
adjusted function prototype
-rw-r--r--src/repl.c4
1 files 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 <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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;