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