From ee49511eaf76799fe45be502bf0e800d58f9c000 Mon Sep 17 00:00:00 2001 From: mdev9 Date: Fri, 26 Apr 2024 15:50:46 +0200 Subject: [PATCH] fixed header --- srcs/minishell.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcs/minishell.h b/srcs/minishell.h index c1c2896..9b09245 100755 --- a/srcs/minishell.h +++ b/srcs/minishell.h @@ -6,7 +6,7 @@ /* By: marde-vr +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/02/04 17:31:38 by tomoron #+# #+# */ -/* Updated: 2024/04/26 15:47:28 by marde-vr ### ########.fr */ +/* Updated: 2024/04/26 15:50:36 by marde-vr ### ########.fr */ /* */ /* ************************************************************************** */ @@ -93,6 +93,7 @@ void redirect_output(t_msh *msh, int i, char **cmd_args); void redirect_input(t_msh *msh, int i, char **cmd_args); t_env *env_add_back(t_env *env, char *name, char *value); void print_syntax_error_bonus(t_cmd *cmd, t_cmd *cmds); +int filename_corresponds(char *wildcard, char *value); t_token *parse_cmds_to_token(t_cmd *command, t_env *env); int ft_export(t_msh *msh, t_token *cmd, t_env *env); void print_env_declare(t_msh *msh, t_env *env_orig);