strchrset renvoi null et non zero en cas erreur

This commit is contained in:
hugodu69
2020-02-19 00:39:53 +01:00
parent 221f0536e3
commit ff29542e56

View File

@@ -28,5 +28,5 @@ char *ft_strchrset(const char *s, const char *set)
return ((char *)set + i);
i++;
}
return (0);
return (NULL);
}