end of mandatory functions
This commit is contained in:
22
ft_putstr_fd.c
Normal file
22
ft_putstr_fd.c
Normal file
@@ -0,0 +1,22 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_putstr_fd.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/11/08 17:43:42 by dgaillet #+# #+# */
|
||||
/* Updated: 2025/11/08 17:44:38 by dgaillet ### ########lyon.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
|
||||
void ft_putstr_fd(char *s, int fd)
|
||||
{
|
||||
while (*s)
|
||||
{
|
||||
ft_putchar_fd(*s, fd);
|
||||
s++;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user