/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/12/04 14:55:00 by gtertysh #+# #+# */ /* Updated: 2016/12/04 15:25:12 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putstr(char const *s) { if (s) while (*s) write(1, s++, 1); }