diff options
Diffstat (limited to 'libft/ft_strlen.c')
-rw-r--r-- | libft/ft_strlen.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/libft/ft_strlen.c b/libft/ft_strlen.c deleted file mode 100644 index 68c7614..0000000 --- a/libft/ft_strlen.c +++ /dev/null @@ -1,27 +0,0 @@ -/* ************************************************************************** */ -/* 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); -} |