42_minishell/data/data.h

17 lines
241 B
C
Raw Normal View History

#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_get_exit_code();
int ft_gen_exit_code(t_data *data);
#endif