/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: vvobis +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/07 17:48:41 by vvobis #+# #+# */ /* Updated: 2024/04/07 17:52:16 by vvobis ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putstr_fd(char *str, int fd) { if (!str) return ; while (*str) ft_putchar_fd(*str++, fd); }