/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* p_subst_alias.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_SUBST_ALIAS_H # define FT_P_SUBST_ALIAS_H # include # include # include "s_struct.h" struct s_subst_alias { char value[ARG_MAX]; char tmp[255]; size_t locat[2]; t_msh *msh; size_t usedcmp; t_bool good; }; size_t p_subst_alias(char word[], t_bool reset, t_msh *msh); #endif