Sign in
mojo
/
mojo-tools
/
5c465e84ee8642a71dcb6719d132f53537617841
/
.
/
fusl
/
src
/
string
/
wcpcpy.c
blob: ef401343323b43c6216aa5c6621a8eb43486374b [
file
]
#include
<wchar.h>
wchar_t
*
wcpcpy
(
wchar_t
*
restrict d
,
const
wchar_t
*
restrict s
)
{
return
wcscpy
(
d
,
s
)
+
wcslen
(
s
);
}