summaryrefslogtreecommitdiff
path: root/ft_striteri.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_striteri.c
parent8403fab94b17bc63bc193037c8777b9074707287 (diff)
Remove testsHEADmain
Diffstat (limited to 'ft_striteri.c')
-rw-r--r--ft_striteri.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/ft_striteri.c b/ft_striteri.c
index 61a02d0..60fb6ad 100644
--- a/ft_striteri.c
+++ b/ft_striteri.c
@@ -28,18 +28,3 @@ void ft_striteri(char *s, void (*f)(unsigned int, char *))
i++;
}
}
-/*
-void tmp(unsigned int i, char* s)
-{
- i = 0;
- *s = ft_toupper(*s);
-}
-
-int main(void)
-{
- char s[] = " abcd";
-
- ft_striteri(s, tmp);
- printf("%s\n", s);
-}
-*/