/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jschaft +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/23 14:15:12 by mcolonna #+# #+# */ /* Updated: 2024/07/01 11:12:51 by mcolonna ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef MAIN_H # define MAIN_H # include "main.h" typedef struct s_env { t_memclass mc_global; t_memclass mc_command; int errorstatus; t_list *variables; bool exit; } t_env; #endif