aboutsummaryrefslogtreecommitdiffstats
path: root/libft/src/ft_strlen.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libft/src/ft_strlen.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/libft/src/ft_strlen.c b/libft/src/ft_strlen.c
new file mode 100644
index 0000000..0964c64
--- /dev/null
+++ b/libft/src/ft_strlen.c
@@ -0,0 +1,25 @@
+/* ************************************************************************** */
+/* LE - / */
+/* / */
+/* ft_strlen.c .:: .:/ . .:: */
+/* +:+:+ +: +: +:+:+ */
+/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
+/* #+# #+ #+ #+# */
+/* Created: 2019/10/07 16:32:28 by rbousset #+# ## ## #+# */
+/* Updated: 2019/10/13 08:35:37 by rbousset ### #+. /#+ ###.fr */
+/* / */
+/* / */
+/* ************************************************************************** */
+
+#include <stddef.h>
+
+size_t
+ ft_strlen(const char *s)
+{
+ const char *ptr;
+
+ ptr = s;
+ while (ptr && *ptr)
+ ptr++;
+ return (ptr - s);
+}