std::wmemchr (3) - Linux Manuals
std::wmemchr: std::wmemchr
NAME
Synopsis
Defined in header <cwchar>
const wchar_t* wmemchr( const wchar_t* ptr, wchar_t ch, std::size_t count );
wchar_t* wmemchr( wchar_t* ptr, wchar_t ch, std::size_t count );
Locates the first occurrence of wide character ch in the initial count wide characters of the wide character array pointed to by ptr.
If count is zero, the function returns a null pointer.
Parameters
ptr - pointer to the wide character array to be examined
ch - wide character to search for
count - number of wide characters to examine
Return value
Pointer to the location of the wide character, or a null pointer if no such character is found.
Example
// Run this code
Possible output:
See also
memchr (function)
strchr (function)
wcschr (function)
find
find_if
find_if_not finds the first element satisfying specific criteria
(C++11)