/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: ajoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/07/25 12:11:23 by ajoly #+# #+# */ /* Updated: 2022/07/25 12:11:25 by ajoly ### ########.fr */ /* */ /* ************************************************************************** */ #include void ft_putstr(char *str) { int i; i = 0; while (str[i] != '\0') { write(1, &str[i], 1); i++; } }