summaryrefslogtreecommitdiff
path: root/ft_tolower.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_tolower.c
parent8403fab94b17bc63bc193037c8777b9074707287 (diff)
Remove testsHEADmain
Diffstat (limited to 'ft_tolower.c')
-rw-r--r--ft_tolower.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/ft_tolower.c b/ft_tolower.c
index 070740b..d76b989 100644
--- a/ft_tolower.c
+++ b/ft_tolower.c
@@ -27,29 +27,3 @@ char ft_tolower(int c)
else
return (c);
}
-/*
-int main(void)
-{
- int l;
- int m;
- int n;
- int o;
-
- l = 64;
- m = 65;
- n = 90;
- o = 91;
- printf("-----------------\n");
- printf("%i\n", ft_tolower(l));
- printf("%i\n", tolower(l));
- printf("-----------------\n");
- printf("%i\n", ft_tolower(m));
- printf("%i\n", tolower(m));
- printf("-----------------\n");
- printf("%i\n", ft_tolower(n));
- printf("%i\n", tolower(n));
- printf("-----------------\n");
- printf("%i\n", ft_tolower(o));
- printf("%i\n", tolower(o));
-}
-*/