Namespaces
Variants
Views
Actions

wcspbrk

From cppreference.com
< c | string | wide
Defined in header <wchar.h>
const wchar_t* wcspbrk( const wchar_t* dest, const wchar_t* str );
wchar_t* wcspbrk(       wchar_t* dest, const wchar_t* str );

Finds the first character in wide string pointed to by dest, that is also in wide string pointed to by str.

Contents

[edit] 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

[edit] Return value

Pointer to the first character in dest, that is also in str, or NULL if no such character exists.

[edit] Example

[edit] See also

returns the length of the maximum initial segment that consists
of only the wide not found in another wide string
(function) [edit]
finds the first occurrence of a wide character in a wide string
(function) [edit]
C++ documentation for wcspbrk