creation du main de testing et du test de abs

This commit is contained in:
hugogogo
2021-08-10 16:40:52 +02:00
parent bcbe2086f5
commit d8aaada7fc
91 changed files with 4430 additions and 159 deletions

View File

@@ -0,0 +1,7 @@
char touppercase(unsigned int i, char c)
{
if (i < 3 && c >= 'a' && c <= 'z')
c -= 32;
return (c);
}