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