This commit is contained in:
Camille Chauvet
2023-05-17 16:45:25 +00:00
commit 29ed24d567
619 changed files with 16119 additions and 0 deletions

12
Test/c03/ex05/main.c Normal file
View File

@ -0,0 +1,12 @@
#include <stdio.h>
int main()
{
char src[] = "hello";
char dest2[5] = "fjff";
int j;
j = ft_strlcat(src, dest2, 5);
printf("%d %s\n", j, dest2);
}