/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/11 16:17:16 by cacharle #+# #+# */ /* Updated: 2019/07/16 07:29:45 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include #include "ft.h" void ft_putstr(char *str) { while (*str) write(1, str++, 1); }