42-archive/libft/ft_putchar.c
2016-08-28 16:33:44 +02:00

6 lines
66 B
C

#include "libft.h"
void ft_putchar(char c)
{
write(1, &c, 1);
}