ft_putstr_fd: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-18 15:20:56 +02:00
parent 28cadf55f1
commit 81343980be
3 changed files with 41 additions and 3 deletions

View file

@ -6,7 +6,7 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */
/* Updated: 2024/10/18 11:33:58 by kcolin ### ########.fr */
/* Updated: 2024/10/18 15:20:07 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
@ -58,5 +58,6 @@ 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);
void ft_putstr_fd(char *s, int fd);
#endif