Synopsis
char *strpbrk(const char *s1,
              const char *s2);
Description

strpbrk locates the first occurrence in the string pointed to by s1 of any character from the string pointed to by s2.

strpbrk returns a pointer to the character, or a null pointer if no character from s2 occurs in s1.