void ft_putnbr_fd(int n, int fd)
Writes an integer to a file descriptor.
Definition ft_output.c:65
void ft_putchar_fd(char c, int fd)
Writes a single character to a file descriptor.
Definition ft_output.c:30
void ft_putendl_fd(char *s, int fd)
Writes a string followed by a newline to a file descriptor.
Definition ft_output.c:47
int ft_putstr_fd(char *str, int fd)
Writes a string to a file descriptor.
Definition ft_output.c:101