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

7
Test/c04/ex03/main.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main ()
{
printf("%d ", ft_atoi(" --++4"));
}

5
Test/c04/ex04/main.c Normal file
View File

@ -0,0 +1,5 @@
int main()
{
ft_putnbr_base(256, "01");
}

7
Test/c04/ex05/main.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("%d", ft_atoi_base(" --++kkk", "loki"));
}