summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_strchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/src/ft_strchr.c')
-rw-r--r--libft/src/ft_strchr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libft/src/ft_strchr.c b/libft/src/ft_strchr.c
index 86bd41d..40dcd0f 100644
--- a/libft/src/ft_strchr.c
+++ b/libft/src/ft_strchr.c
@@ -19,8 +19,6 @@ char
size_t i;
i = 0;
- if (!s)
- return (NULL);
while (s[i] != c)
{
if (!s[i])