Sign in
mojo
/
mojo-tools
/
c07399d071c59658a5c2bed81dee6e9ed9142442
/
.
/
fusl
/
src
/
string
/
wcscpy.c
blob: 5b1b11c48a5f849596a304e62d544f5d70a18c64 [
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
;
}