Sign in
fuchsia
/
fuchsia
/
a8b1df8
/
.
/
zircon
/
third_party
/
ulib
/
musl
/
src
/
string
/
wmemset.c
blob: 8dcc57719f0a8124da7c00bce407f1100587c57e [
file
] [
log
] [
blame
]
#include
<wchar.h>
wchar_t
*
wmemset
(
wchar_t
*
d
,
wchar_t
c
,
size_t
n
)
{
wchar_t
*
ret
=
d
;
while
(
n
--)
*
d
++
=
c
;
return
ret
;
}