/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strchr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 10:14:47 by cacharle #+# #+# */ /* Updated: 2019/10/20 13:10:19 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include char *ft_strchr(const char *s, int c) { while (*s) { if (*s == (char)c) return ((char*)s); s++; } if ((char)c == 0) return ((char*)s); return (NULL); }