The libc implementation
Martin ‘Solar’ Baute
Public Domain
char * strpbrk(const char *s1,const char *s2)
Finds the first character in s1 that occurs in s2
Returns a pointer to a character in s1 that occurs in s2
Returns NULL if s1 and s2 do not share any characters