Sign in
mojo
/
mojo-tools
/
042ad69c2975628a6f17bf72a5055d280c96aeb7
/
.
/
fusl
/
src
/
string
/
wmemcpy.c
blob: bbaf3c6450312613a6ee7062d582213238fbcb0f [
file
]
#include
<wchar.h>
wchar_t
*
wmemcpy
(
wchar_t
*
restrict d
,
const
wchar_t
*
restrict s
,
size_t
n
)
{
wchar_t
*
a
=
d
;
while
(
n
--)
*
d
++
=
*
s
++;
return
a
;
}