ft_putendl_fd: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-18 15:25:40 +02:00
parent 81343980be
commit b1f1b8a13f
3 changed files with 39 additions and 2 deletions

View file

@ -59,5 +59,6 @@ void ft_striteri(char *s, void (*f)(unsigned int, char*));
void ft_putchar_fd(char c, int fd);
void ft_putstr_fd(char *s, int fd);
void ft_putendl_fd(char *s, int fd);
#endif