/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: nlauvray void ft_putstr(char *str) { while (*str != 0) write(1, str++, 1); }