xref
: /
third_party
/
musl
/
porting
/
uniproton
/
kernel
/
src
/
multibyte
/
mbsinit.c
(revision 570af302)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/musl/porting/uniproton/kernel/src/multibyte/
1
#
include
<
wchar.h
>
2
3
int
mbsinit
(
const
mbstate_t
*
st
)
4
{
5
return
!
st
|| !*(
unsigned
*)
st
;
6
}
7