aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Uhlig2024-10-25 15:51:12 +0200
committerChristopher Uhlig2024-10-25 15:51:12 +0200
commitcecb3e3560c395f2355a068624a7f6ca3d6b5655 (patch)
treeeec711a37f7bb2e77b85c0f139d2989bf27814bd
parent44378a79d5c6b742e8dbb03e5025b51a45d0e881 (diff)
downloadminishell-cecb3e3560c395f2355a068624a7f6ca3d6b5655.tar.gz
minishell-cecb3e3560c395f2355a068624a7f6ca3d6b5655.zip
adjusted header for env
-rw-r--r--include/minishell.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/minishell.h b/include/minishell.h
index 2319e8b..7b6226e 100644
--- a/include/minishell.h
+++ b/include/minishell.h
@@ -3,10 +3,10 @@
/* ::: :::::::: */
/* minishell.h :+: :+: :+: */
/* +:+ +:+ +:+ */
-/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
+/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/22 17:14:49 by dkaiser #+# #+# */
-/* Updated: 2024/10/17 15:25:58 by dkaiser ### ########.fr */
+/* Updated: 2024/10/22 16:52:26 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -29,7 +29,7 @@
int init(void);
int init_signal_handling(void);
-void repl(const char *prompt, t_env *env);
+void repl(const char *prompt, t_env **env);
t_list *parse(t_token *tokens);
t_node *parse_cmd(t_token *tokens);
@@ -37,5 +37,5 @@ t_redirection *collect_redirs(t_token **tokens);
void print_ast(t_node *ast);
-int eval(t_node *node, t_env *env);
+int eval(t_node *node, t_env **env);
#endif