blob: d0ab6be80af313e36d65842ed6b01c152e53baf4 [file] [log] [blame]
#include <wchar.h>
wchar_t* wmemset(wchar_t* d, wchar_t c, size_t n) {
wchar_t* ret = d;
while (n--)
*d++ = c;
return ret;
}