/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: whaffman +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/11 15:02:05 by whaffman #+# #+# */ /* Updated: 2024/06/12 11:13:48 by whaffman ### ########.fr */ /* */ /* ************************************************************************** */ #include void ft_putstr(char *str) { while (*str) { write(1, str, 1); str++; } } #ifdef DEBUG int main(void) { ft_putstr("Hello\n"); ft_putstr(""); ft_putstr("Don't "); ft_putstr("Panic!!\n"); ft_putstr("And don't forget your towel\n"); return (0); } #endif