blob: beb3a129f30e31dd3d1fa4c8565e3807f75254b2 [file] [log] [blame]
#include <wchar.h>
wchar_t* wcpcpy(wchar_t* restrict d, const wchar_t* restrict s) {
return wcscpy(d, s) + wcslen(s);
}