/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_putendl.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/10/15 05:19:52 by rbousset #+# ## ## #+# */ /* Updated: 2019/10/15 05:19:53 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include #include int ft_putendl(const char *s) { return (write(1, s, ft_strlen(s)) + ft_putchar('\n')); }