Revert "Roll NDK to r11c and extract it into its own repository."
[android_tools.git] / ndk / sources / android / support / src / musl-multibyte / mbstowcs.c
blobdc0d459480e26113a9b527cd160a7df8b7af7aa8
1 #include <stdlib.h>
2 #include <wchar.h>
4 size_t mbstowcs(wchar_t *restrict ws, const char *restrict s, size_t wn)
6 return mbsrtowcs(ws, (void*)&s, wn, 0);