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