strchr Subroutine

string strchr(const char *s, char c)

strchr returns a pointer to the first occurrence of the character c in the string s. If no match is found, strchr returns 0. This function does not work with wide or multi-byte characters.