/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* p_redirs.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #ifndef FT_P_REDIRS_H # define FT_P_REDIRS_H # include # include "s_struct.h" enum e_fd_rdr_id { FD, RDR }; struct s_rdr_tmp { const char *word; char *ptr; int8_t redir; }; int8_t p_redirs(char word[], t_com **com, t_msh *msh); #endif