/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_m_prompt.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include #include "ft_m_prompt.h" #include "ft_s_struct.h" void ft_m_cont_prompt(void) { ft_dprintf(STDIN_FILENO, "> "); /* TODO :ft_printf("%s", msh->ps_two); */ } void ft_m_prompt(t_msh *msh) { ft_dprintf(STDIN_FILENO, "%s", msh->ps_one); }