42-archive/fillit/lib/libft/ft_putendl.c
Jack Halford 3d1bba5039 libft
2016-08-28 18:13:44 +02:00

10 lines
125 B
C

#include "libft.h"
void ft_putendl(char const *s)
{
char nl;
nl = '\n';
write(1, s, ft_strlen(s));
write(1, &nl, 1);
}