diff options
Diffstat (limited to 'libft/src/ft_strlchr.c')
-rw-r--r-- | libft/src/ft_strlchr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_strlchr.c b/libft/src/ft_strlchr.c index 228aa89..cfbd9b5 100644 --- a/libft/src/ft_strlchr.c +++ b/libft/src/ft_strlchr.c @@ -13,8 +13,7 @@ #include <libft.h> #include <stddef.h> -long - ft_strlchr(const char *s, int c) +long ft_strlchr(const char *s, int c) { const size_t len = ft_strlen(s); const size_t rem = ft_strlen(ft_strchr(s, c)); |