#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