/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jfleury +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/11/05 14:47:33 by jfleury #+# #+# */ /* Updated: 2018/11/13 20:26:16 by jfleury ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putstr(char const *s) { int i; i = 0; if (s != NULL) { while (s[i] != 0) { ft_putchar(s[i]); i++; } } }