wcspbrk
From cppreference.com
Defined in header <wchar.h>
|
||
wchar_t* wcspbrk( const wchar_t* dest, const wchar_t* str ); |
(since C95) | |
Finds the first character in wide string pointed to by dest
, that is also in wide string pointed to by str
.
Parameters
dest | - | pointer to the null-terminated wide string to be analyzed |
src | - | pointer to the null-terminated wide string that contains the characters to search for |
Return value
Pointer to the first character in dest
, that is also in str
, or NULL if no such character exists.