summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_strlchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/src/ft_strlchr.c')
-rw-r--r--libft/src/ft_strlchr.c3
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));