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

Description

Writes the string s to the file descriptor fd.

Implementation

void	ft_putstr_fd(char *s, int fd)
{
	while (s && *s)
		ft_putchar_fd(*(s++), fd);
}

References