6 lines
66 B
C
6 lines
66 B
C
#include "libft.h"
|
|
|
|
void ft_putchar(char c)
|
|
{
|
|
write(1, &c, 1);
|
|
}
|