/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* cmd.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cchauvet # include "../data/data.h" typedef struct s_cmd { int fd_in[2]; int fd_out[2]; int pid; char *executable; char **args; bool own_cmd; } t_cmd; void ft_cmddel(void *content); void ft_cmdwaiter(void *content); void ft_cmdcloser(void *ptr); #endif