summaryrefslogtreecommitdiff
path: root/ft_toupper.c
diff options
context:
space:
mode:
authoryctct <yctct@yctct.com>2026-02-05 12:18:33 +0100
committeryctct <yctct@yctct.com>2026-02-05 12:18:33 +0100
commit472b8f20c0f74d20dbb434abce10ee86054b9975 (patch)
tree95625c0ba5a7f999c9add7f9bd55bb0f0b4dc173 /ft_toupper.c
parent8403fab94b17bc63bc193037c8777b9074707287 (diff)
Remove testsHEADmain
Diffstat (limited to 'ft_toupper.c')
-rw-r--r--ft_toupper.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/ft_toupper.c b/ft_toupper.c
index 5ed5854..069ccd6 100644
--- a/ft_toupper.c
+++ b/ft_toupper.c
@@ -23,33 +23,3 @@ char ft_toupper(int c)
c -= 32;
return (c);
}
-/*
-int main(void)
-{
- int i;
- int j;
- int k;
- int l;
-
- i = 96;
- j = 97;
- k = 122;
- l = 123;
- printf("-----------------\n");
- printf("for 96 ascii i.e. backtick\n");
- printf("%i\n", ft_toupper(i));
- printf("%i\n", toupper(i));
- printf("-----------------\n");
- printf("for 97 ascii i.e. 'a'\n");
- printf("%i\n", ft_toupper(j));
- printf("%i\n", toupper(j));
- printf("-----------------\n");
- printf("for 122 ascii i.e. 'z'\n");
- printf("%i\n", ft_toupper(k));
- printf("%i\n", toupper(k));
- printf("-----------------\n");
- printf("for 123 ascii i.e. '{'\n");
- printf("%i\n", ft_toupper(l));
- printf("%i\n", toupper(l));
-}
-*/