Synopsis
char *strchr(const char *s,
             int c);
Description

strchr locates the first occurrence of c (converted to a char) in the string pointed to by s. The terminating null character is considered to be part of the string.

strchr returns a pointer to the located character, or a null pointer if c does not occur in the string.