mirror of
https://github.com/fluencelabs/musl
synced 2025-06-01 00:51:41 +00:00
9 lines
122 B
C
9 lines
122 B
C
#include <wchar.h>
|
|
|
|
wchar_t *wcscpy(wchar_t *d, const wchar_t *s)
|
|
{
|
|
wchar_t *a = d;
|
|
while ((*d++ = *s++));
|
|
return a;
|
|
}
|