/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_b_echo.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_s_struct.h" int32_t ft_b_echo(char *args[], t_msh *msh) { (void)msh; while (*args) { ft_printf("%s\n", *args); args++; } return (0); }