blob: 02d21961ab63a589d2ac73bf7c2cfa14fba6e10e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <wchar.h>
wchar_t *wcpcpy(wchar_t *restrict d, const wchar_t *restrict s)
{
return wcscpy(d, s) + wcslen(s);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|