summaryrefslogtreecommitdiff
path: root/ft_strlen.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_strlen.c
parent8403fab94b17bc63bc193037c8777b9074707287 (diff)
Remove testsHEADmain
Diffstat (limited to 'ft_strlen.c')
-rw-r--r--ft_strlen.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/ft_strlen.c b/ft_strlen.c
index 8483574..2845b41 100644
--- a/ft_strlen.c
+++ b/ft_strlen.c
@@ -26,14 +26,3 @@ size_t ft_strlen(const char *s)
i++;
return (i);
}
-/*
-#include <stdio.h>
-#include <string.h>
-
-int main(void)
-{
- const char s[]= "Hello";
- printf("%zu\n", ft_strlen(s));
- printf("%zu\n", strlen(s));
-}
-*/