David Gonzalez Martin 38011a233c Integrate libs
2024-03-02 12:58:12 -06:00

7 lines
122 B
C

#include <wchar.h>
wchar_t *wcpcpy(wchar_t *restrict d, const wchar_t *restrict s)
{
return wcscpy(d, s) + wcslen(s);
}