#include "libft.h" char * ft_strchr (const char *s, int c) { return (ft_memchr (s, c, ft_strlen (s) + 1)); }