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