/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* minishell.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: sede-san # include # include # include # define HISTORY_FILE "/.minishell_history" typedef struct s_env { char *home; char **path; } t_env; typedef struct s_minishell { char *prompt; char *history_file; t_env env; } t_minishell; #endif