3 <<strpbrk>>---find characters in string
10 char *strpbrk(const char *<[s1]>, const char *<[s2]>);
13 This function locates the first occurence in the string
14 pointed to by <[s1]> of any character in string pointed to by
15 <[s2]> (excluding the terminating null character).
18 <<strpbrk>> returns a pointer to the character found in <[s1]>, or a
19 null pointer if no character from <[s2]> occurs in <[s1]>.
22 <<strpbrk>> requires no supporting OS subroutines.
28 strpbrk (const char *s1
,