Sign in
mojo
/
mojo-tools
/
6d10d6bbfecec30019b2fe5c06e28a809f0d9753
/
.
/
fusl
/
src
/
multibyte
/
mbsinit.c
blob: 51cc386c1cd1dac40e49edc6f1b3b447f458d797 [
file
] [
log
] [
blame
]
/*
* This code was written by Rich Felker in 2010; no copyright is claimed.
* This code is in the public domain. Attribution is appreciated but
* unnecessary.
*/
#include
<wchar.h>
int
mbsinit
(
const
mbstate_t
*
st
)
{
return
!
st
||
!*(
unsigned
*)
st
;
}