/* * strchr.c */ #include char *strchr(const char *s, int c) { while (*s != (char)c) { if (!*s) return NULL; s++; } return (char *)s; }