/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_strchr.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/10/07 18:39:17 by rbousset #+# ## ## #+# */ /* Updated: 2019/10/13 08:36:43 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include char *ft_strchr(const char *s, int c) { char ch; ch = (char)c; while (s) { if (*s == ch) return ((char *)s); if (*s == '\0') return (NULL); s++; } return (NULL); }