0
0
This commit is contained in:
Guy Baconniere
2021-08-16 13:27:55 +02:00
parent c665b6c546
commit 0909750997
21 changed files with 431 additions and 14 deletions

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));
}