Files
zig/libc/musl/src/string/wcscpy.c
Andrew Kelley 62486c35a4 ability to build musl from source
bundles musl 1.1.21

See #514
2019-03-12 17:32:32 -04:00

9 lines
140 B
C

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