15 lines
151 B
C
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;
|