Sets a specified character a specified number of times at the beginning of a specified storage area.
wchar_t *wmemset(wchar_t *s, wchar_t c, size_t n);
s Pointer to storage area to set characters in
n Number of characters to be set
The wmemset function is the wide-character version of the memset function.