wmemset
From cppreference.com
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 |
[edit] Parameters
dest | - | pointer to the object to fill |
ch | - | fill byte |
count | - | number of bytes to fill |
[edit] Return value
dest
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
copies a certain amount of wide characters between two non-overlapping arrays (function) |
|
C++ documentation for wmemset
|