/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: exam +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/26 10:05:51 by exam #+# #+# */ /* Updated: 2019/07/26 10:07:27 by exam ### ########.fr */ /* */ /* ************************************************************************** */ #include void ft_putstr(char *str) { while (*str) write(STDOUT_FILENO, str++, 1); }