/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* minishell.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mmoussou # include # include # include "libft.h" typedef struct s_env { char *name; char *content; struct s_env *next; } t_env; // char set_env(char **env, const char *name, char *content); #endif