std::wmemchr
From cppreference.com
| 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 object pointed to by ptr.
Contents |
[edit] Parameters
| ptr | - | pointer to the object to be examined |
| ch | - | wide character to search for |
| count | - | number of characters to examine |
[edit] Return value
Pointer to the location of the character, or NULL if no such character is found.
[edit] Example
| This section is incomplete Reason: no example |
[edit] See also
| finds the first occurrence of a wide character in a wide string (function) |
|
| (C++11)
|
finds the first element satisfying specific criteria (function template) |
|
C documentation for wmemchr
|
|