/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* pipex.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/01/11 15:33:34 by erey-bet #+# #+# */ /* Updated: 2023/01/16 18:52:06 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef PIPEX_H # define PIPEX_H # include "libft/libft.h" # include "get_next_line/get_next_line.h" # include # include # include # include typedef struct s_data { char *cmd1; char **flg1; char *cmd2; char **flg2; char *fl1; char *fl2; char *ct_fl1; int fd1; int fd2; char **env; } t_data; #endif