27 lines
1.1 KiB
C
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/26 09:38:51 by mmoussou #+# #+# */
/* Updated: 2024/04/29 13:21:45 by mmoussou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINISHELL_H
# define MINISHELL_H
# include "parsing.h"
# include "execution.h"
# include <readline/readline.h>
# include <stdio.h>
# include <stdlib.h>
# include "libft.h"
char set_env(char **env, const char *name, char *content);
#endif