ft_ls/lib/libft/ft_putstr_fd.c
2024-12-16 19:35:03 +01:00

22 lines
1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/05 00:32:38 by erey-bet #+# #+# */
/* Updated: 2022/10/10 22:13:50 by erey-bet ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_putstr_fd(char *s, int fd)
{
int i = 0;
for (; s != NULL && s[i]; i++)
ft_putchar_fd(s[i], fd);
return i;
}