0
0
This commit is contained in:
Guy Baconniere
2021-08-20 10:02:38 +02:00
parent 5aa02c94b5
commit d30270c485
354 changed files with 0 additions and 0 deletions

12
C_04/tests_C04/ex00.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
#include "../ex00/ft_strlen.c"
int main(void)
{
char *a = "12345678";
char b[1];
b[0] = 0;
printf("Test\nexpected : 8 | result : %d\n", ft_strlen(a));
printf("Test\nexpected : 0 | result : %d\n", ft_strlen(b));
}