21 lines
231 B
C
21 lines
231 B
C
#ifndef FT_MINISHELL
|
|
# define FT_MINISHELL
|
|
# include "libftx/libftx.h"
|
|
|
|
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;
|
|
|
|
#endif
|