/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 09:52:12 by cacharle #+# #+# */ /* Updated: 2019/10/17 09:06:58 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include void ft_putstr(char const *s) { int i; i = 0; while (s[i]) { write(STDOUT_FILENO, &s[i], 1); i++; } }