Searches a string for the occurrence of one of a specified set of characters.
#include <string.h>
char *strpbrk (const char *str, const char
*charset);
Function Variants
This function also has variants named _strpbrk32 and _strpbrk64
for use with 32-bit and 64-bit pointer sizes, respectively. See
Section 1.8 for more information on using
pointer-size-specific functions.
| x | The address of the first character in the string that is in the set. |
| NULL | Indicates that no character is in the set. |