Sign in
fuchsia
/
zircon
/
sandbox/voydanoff/vim2
/
.
/
third_party
/
ulib
/
musl
/
src
/
string
/
wcscpy.c
blob: fc9631fc1a268d864e2fde099be8915196676d8c [
file
] [
log
] [
blame
]
#include
<wchar.h>
wchar_t
*
wcscpy
(
wchar_t
*
restrict d
,
const
wchar_t
*
restrict s
)
{
wchar_t
*
a
=
d
;
while
((*
d
++
=
*
s
++))
;
return
a
;
}