creation du main de testing et du test de abs
This commit is contained in:
7
testing/srcs/test_toupper.c
Normal file
7
testing/srcs/test_toupper.c
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
char touppercase(unsigned int i, char c)
|
||||
{
|
||||
if (i < 3 && c >= 'a' && c <= 'z')
|
||||
c -= 32;
|
||||
return (c);
|
||||
}
|
||||
Reference in New Issue
Block a user