/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putendl.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 10:42:54 by cacharle #+# #+# */ /* Updated: 2019/10/18 12:08:37 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include #include "libft.h" void ft_putendl(char *s) { ft_putstr(s); ft_putchar('\n'); }