Everything

wmemset


Sets a specified character a specified number of times at the beginning of a specified storage area.

[Format]

#include <wchar.h>

wchar_t *wmemset(wchar_t *s, wchar_t c, size_t n);

[Parameters]

s Pointer to storage area to set characters in

c Character to be set

n Number of characters to be set

[Return values]

Value of s

[Remarks]

The wmemset function is the wide-character version of the memset function.