/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* minishell_structs.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: lperrey +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/10/08 02:35:52 by lperrey #+# #+# */ /* Updated: 2021/10/10 05:39:09 by lperrey ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef MINISHELL_STRUCTS_H # define MINISHELL_STRUCTS_H typedef struct s_all { char **envp; char *prompt_base; char *prompt; } t_all; #endif