rt/libft/ft_putendl.c

20 lines
994 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: scebula <scebula@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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');
}