42_C_PISCINE/Rush/Rush01/ft_putchar.c

7 lines
67 B
C
Raw Permalink Normal View History

2023-05-17 12:45:25 -04:00
#include <unistd.h>
void ft_putchar(char c)
{
write(1, &c, 1);
}