/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putendl.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 12:13:28 by scebula #+# #+# */ /* Updated: 2015/11/27 22:58:54 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putendl(char const *s) { write(1, s, ft_strlen(s)); ft_putchar('\n'); }