42_Philosopher/utils/putchar.c
2023-04-25 14:30:21 +00:00

7 lines
67 B
C

#include <unistd.h>
void ft_putchar(char c)
{
write(1, &c, 1);
}