]> git.dkaiser.de - 42/minishell.git/commitdiff
adjusted function prototype
authorChristopher Uhlig <chuhlig@1-D-6.42heilbronn.de>
Fri, 25 Oct 2024 13:54:49 +0000 (15:54 +0200)
committerChristopher Uhlig <chuhlig@1-D-6.42heilbronn.de>
Fri, 25 Oct 2024 13:54:49 +0000 (15:54 +0200)
src/repl.c

index 931e25e30053bddd2d7db299395d3321a6e93c73..9fae8497633cb376a10d24dfad4313d9689513d3 100644 (file)
@@ -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;