Searches a wide-character string for the first occurrence of one of a specified set of wide characters.
#include <wchar.h> wchar_t *wcspbrk (const wchar_t *wstr, const wchar_t *charset);Function Variants This function also has variants named _wcspbrk32 and _wcspbrk64 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 wide character in the string that is in the set. |
NULL | Indicates that none of the characters are in charset. |