42_minishell/minishell.h

15 lines
151 B
C
Raw Normal View History

2023-01-31 08:40:15 -05:00
typedef struct s_list
{
void *content;
void *next;
int tag;
} t_list
typedef struct cmd
{
int fd_in;
int fd_out;
char *cmd;
char *args;
} cmd;