/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: joelecle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:07:04 by joelecle #+# #+# */ /* Updated: 2020/02/14 17:07:04 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include int ft_putstr_fd(char *s, int fd) { return (write(fd, s, ft_strlen(s))); }