Revert "Roll NDK to r11c and extract it into its own repository."
[android_tools.git] / ndk / sources / android / support / src / musl-multibyte / mbsinit.c
blobe001d84443664406ad9d3a98ea59afe9316ee552
1 /*
2 * This code was written by Rich Felker in 2010; no copyright is claimed.
3 * This code is in the public domain. Attribution is appreciated but
4 * unnecessary.
5 */
7 #include <wchar.h>
9 int mbsinit(const mbstate_t *st)
11 return !st || !*(unsigned *)st;