aboutsummaryrefslogtreecommitdiffstats
path: root/ft_strlen.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_strlen.c')
-rw-r--r--ft_strlen.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/ft_strlen.c b/ft_strlen.c
deleted file mode 100644
index 06b0aae..0000000
--- a/ft_strlen.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include "libft.h"
-
-size_t
-ft_strlen (const char *s)
-{
- size_t i;
-
- i = 0;
- while (s[i])
- i++;
- return (i);
-}