Compare commits
2 Commits
22ca98299b
...
29151da810
| Author | SHA1 | Date |
|---|---|---|
|
|
29151da810 | |
|
|
7da10506bb |
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue