27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jschaft <cecile.schaft@orange.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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
|