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

Description

Writes the character c to the file descriptor fd.

Implementation

void	ft_putchar_fd(char c, int fd)
{
	write(fd, &c, 1);
}

References