6 lines
78 B
C
6 lines
78 B
C
#include "libft.h"
|
|
|
|
void ft_putchar_fd(char c, int fd)
|
|
{
|
|
write(fd, &c, 1);
|
|
}
|