Scan strings for characters in a specified character set.
LPSTR strpbrk( LPCSTR lpcszString, LPCSTR lpcszCharSet )
Returns a pointer to the first occurrence of a character in a string that is in specified a character set.
EX1
void strpbrk_ex1() { char str1[] = "I saw 3 blind mice"; char* pdest = strpbrk(str1, "123456789"); out_str(pdest); // output "3 blind mice" }
strrchr
origin.h