This commit is contained in:
Timo Schmidt 2023-03-24 02:20:28 +01:00
parent 31d486102a
commit 74c1a86164
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/24 02:04:46 by tischmid #+# #+# */
/* Updated: 2023/03/24 02:14:00 by tischmid ### ########.fr */
/* Updated: 2023/03/24 02:20:19 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
@ -32,9 +32,9 @@ int main(void)
{
char s1[] = STR1;
char s2[] = STR2;
printf("s1 %s s2 %s\n", s1, s2);
printf("s1: %s s2: %s\n", s1, s2);
ft_strcat(s1, s2);
printf("s1 %s s2 %s\n", s1, s2);
printf("s1: %s s2: %s\n", s1, s2);
return (0);
}
*/ ////