8 lines
86 B
C
8 lines
86 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
void ft_putchar(char c)
|
|
{
|
|
write(1, &c, 1);
|
|
}
|