strpbrk
---find chars in string#include <string.h> char *strpbrk(const char *s1, const char *s2);Description
Returns
strpbrk
returns a pointer to the character found in s1, or a
null pointer if no character from s2 occurs in s1.
Portability
strpbrk
requires no supporting OS subroutines.