/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putendl.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/12/04 14:57:59 by gtertysh #+# #+# */ /* Updated: 2016/12/04 15:24:37 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putendl(char const *s) { if (s) while (*s) write(1, s++, 1); write(1, "\n", 1); }