Files
42_INT_01_libft/test/putchar.c
2019-11-13 12:48:59 +01:00

7 lines
67 B
C

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