blob: ef401343323b43c6216aa5c6621a8eb43486374b [file] [log] [blame]
#include <wchar.h>
wchar_t *wcpcpy(wchar_t *restrict d, const wchar_t *restrict s)
{
return wcscpy(d, s) + wcslen(s);
}