wmemset
From cppreference.com
Template:c/string/wide/sidebar
| Defined in header <wchar.h>
|
||
| wchar_t* wmemset( wchar_t* dest, wchar_t ch, size_t count ); |
||
Copies wide character ch into each of the first count wide characters of the object pointed to by dest.
Contents |
Parameters
| dest | - | pointer to the object to fill |
| ch | - | fill byte |
| count | - | number of bytes to fill |
Return value
dest
Example
| This section is incomplete Reason: no example |
See also
| C++ documentation for wmemset
|