/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: hulamy +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/11/19 18:35:48 by hulamy #+# #+# */ /* Updated: 2019/11/19 18:37:07 by hulamy ### ########.fr */ /* */ /* ************************************************************************** */ /* ** write the string s on the given file descritor fd */ #include "libft.h" void ft_putstr_fd(char *s, int fd) { while (s && *s) ft_putchar_fd(*s++, fd); }