Compare commits

...

2 Commits

Author SHA1 Message Date
Timo Schmidt 29151da810 More readable ft_putstr function 2023-03-19 19:26:01 +01:00
Timo Schmidt 7da10506bb Header 2023-03-19 19:11:12 +01:00
2 changed files with 6 additions and 3 deletions

View File

@ -6,7 +6,7 @@
/* By: jtorrez- <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/18 20:15:26 by jtorrez- #+# #+# */
/* Updated: 2023/03/19 19:07:32 by tischmid ### ########.fr */
/* Updated: 2023/03/19 19:25:29 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
@ -76,5 +76,8 @@ void ft_putstr(char *str)
i = 0;
while (str[i] != '\0')
ft_putchar(str[i++]);
{
ft_putchar(str[i]);
i = i + 1;
}
}

View File

@ -6,7 +6,7 @@
/* By: jtorrez- <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/18 20:15:12 by jtorrez- #+# #+# */
/* Updated: 2023/03/19 18:56:58 by tischmid ### ########.fr */
/* Updated: 2023/03/19 19:10:59 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */