0b44a031
400c5e5c
1 2
3
4 5 6 7 8
#include <wchar.h> wchar_t *wcscpy(wchar_t *restrict d, const wchar_t *restrict s) { wchar_t *a = d; while ((*d++ = *s++)); return a; }