42_minishell/data/data.h
2023-03-10 13:40:20 +01:00

16 lines
216 B
C

#ifndef DATA_H
# define DATA_H
# include "../libftx/libft/list.h"
typedef struct s_data
{
t_list **env;
t_list **cmds;
int exit_code;
char *exit_code_str;
} t_data;
int ft_gen_exit_code(t_data *data);
#endif