ft_putendl_fd - gabrielcoelhodacunha-old/42sp-libft GitHub Wiki

Description

Writes the string s, followed by the new line character, to the file descriptor fd.

Implementation

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

References