mirror of
https://github.com/fluencelabs/musl
synced 2025-06-02 09:31:33 +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;
|
||
|
}
|