Files
42_INT_01_libft/test/srcs/putchar.c
2019-11-16 14:35:48 +01:00

7 lines
67 B
C

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