1*c9945492SAndroid Build Coastguard Worker #include <wchar.h> 2*c9945492SAndroid Build Coastguard Worker wcpcpy(wchar_t * restrict d,const wchar_t * restrict s)3*c9945492SAndroid Build Coastguard Workerwchar_t *wcpcpy(wchar_t *restrict d, const wchar_t *restrict s) 4*c9945492SAndroid Build Coastguard Worker { 5*c9945492SAndroid Build Coastguard Worker return wcscpy(d, s) + wcslen(s); 6*c9945492SAndroid Build Coastguard Worker } 7