ft_putchar

#include <unistd.h>

void	ft_putchar(char c)
{
	write (1, &c, 1);
}
Mushy Mantis