aboutsummaryrefslogtreecommitdiff
path: root/ft_putendl_fd.c
blob: 58ca452623eabeb227431afd7909b5f51263d9fc (plain)
1
2
3
4
5
6
7
#include "libft.h"

void    ft_putendl_fd(char const *s, int fd)
{
    ft_putstr_fd(s, fd);
    ft_putchar_fd('\n', fd);
}