/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: hulamy +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/11/14 21:15:31 by hulamy #+# #+# */ /* Updated: 2018/11/14 21:15:32 by hulamy ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putstr_fd(char const *s, int fd) { while (s && *s) ft_putchar_fd(*s++, fd); }