Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
src
/
string
/
wcscpy.c
blob: 625bf53d08768c8b147199e8ecd9f1689a342e02 [
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
;
}