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