Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
d1c24ac4ec721ea49c15b277eaebed30f8df1e4c
/
.
/
src
/
string
/
wcscpy.c
blob: e0ac194f3a1f4a31d81e981cba6c8646eed479c8 [
file
] [
log
] [
blame
]
#include
<wchar.h>
wchar_t
*
wcscpy
(
wchar_t
*
d
,
const
wchar_t
*
s
)
{
wchar_t
*
a
=
d
;
while
((*
d
++
=
*
s
++));
return
a
;
}