From a3f3fc742daa4b28094b5ebe9be60263c41979d1 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Wed, 30 Oct 2019 15:00:17 +0100 Subject: New libft, feelsgoodman --- libft/src/ft_strlen.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 libft/src/ft_strlen.c (limited to 'libft/src/ft_strlen.c') diff --git a/libft/src/ft_strlen.c b/libft/src/ft_strlen.c new file mode 100644 index 0000000..68c7614 --- /dev/null +++ b/libft/src/ft_strlen.c @@ -0,0 +1,27 @@ +/* ************************************************************************** */ +/* LE - / */ +/* / */ +/* ft_strlen.c .:: .:/ . .:: */ +/* +:+:+ +: +: +:+:+ */ +/* By: rbousset +:+ +: +: +:+ */ +/* #+# #+ #+ #+# */ +/* Created: 2019/10/07 16:32:28 by rbousset #+# ## ## #+# */ +/* Updated: 2019/10/13 08:35:37 by rbousset ### #+. /#+ ###.fr */ +/* / */ +/* / */ +/* ************************************************************************** */ + +#include + +size_t + ft_strlen(const char *s) +{ + size_t i; + + i = 0; + if (!s) + return (0); + while (s[i] != '\0') + i++; + return (i); +} -- cgit v1.2.3