diff options
Diffstat (limited to 'libft/src/ft_strlen.c')
-rw-r--r-- | libft/src/ft_strlen.c | 27 |
1 files changed, 27 insertions, 0 deletions
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 <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) +{ + size_t i; + + i = 0; + if (!s) + return (0); + while (s[i] != '\0') + i++; + return (i); +} |