ft_putchar_fd: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-18 14:30:13 +02:00
parent 6a186f7527
commit 28cadf55f1
3 changed files with 31 additions and 2 deletions

View file

@ -57,4 +57,6 @@ char *ft_itoa(int n);
char *ft_strmapi(char const *s, char (*f)(unsigned int, char));
void ft_striteri(char *s, void (*f)(unsigned int, char*));
void ft_putchar_fd(char c, int fd);
#endif