aboutsummaryrefslogtreecommitdiff
path: root/ft_putendl.c
blob: 0e9eaedafeda4a5a9e54c5c35dc0a06eda45c050 (plain)
1
2
3
4
5
6
7
8
#include <unistd.h>
#include "libft.h"

void ft_putendl(char const *s)
{
    ft_putstr(s);
    ft_putchar('\n');
}