diff options
Diffstat (limited to 'libft/src/ft_strclen.c')
-rw-r--r-- | libft/src/ft_strclen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_strclen.c b/libft/src/ft_strclen.c index fe88ca5..86a272d 100644 --- a/libft/src/ft_strclen.c +++ b/libft/src/ft_strclen.c @@ -12,8 +12,7 @@ #include <stddef.h> -size_t - ft_strclen(const char *s, int c) +size_t ft_strclen(const char *s, int c) { const char *ptr; |