1 2 3 4 5 6 7 8
#include <unistd.h> #include "libft.h" void ft_putendl(char const *s) { ft_putstr(s); ft_putchar('\n'); }