1 2 3 4 5 6 7
#include "libft.h" void ft_putendl_fd(char const *s, int fd) { ft_putstr_fd(s, fd); ft_putchar_fd('\n', fd); }