/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mdenys +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/11/04 13:45:44 by mdenys #+# #+# */ /* Updated: 2020/11/04 13:48:29 by mdenys ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putstr_fd(char *s, int fd) { int i; i = 0; if (s) { while (s[i]) { ft_putchar_fd(s[i], fd); i++; } } }