blob: 5b1b11c48a5f849596a304e62d544f5d70a18c64 [file] [log] [blame]
#include <wchar.h>
wchar_t* wcscpy(wchar_t* restrict d, const wchar_t* restrict s) {
wchar_t* a = d;
while ((*d++ = *s++))
;
return a;
}