wmemset

From cppreference.com
< c‎ | string‎ | wide
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

[edit] See also

copies a certain amount of wide characters between two non-overlapping arrays
(function)
C++ documentation for wmemset