42_minishell/minishell.h
Camille Chauvet 5a102e93a1 init
2023-01-31 14:40:15 +01:00

15 lines
151 B
C

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;