musl-tcc/src/multibyte/mbstowcs.c
2022-03-20 16:48:53 +08:00

8 lines
158 B
C

#include <stdlib.h>
#include <wchar.h>
size_t mbstowcs(wchar_t *restrict ws, const char *restrict s, size_t wn)
{
return mbsrtowcs(ws, (void*)&s, wn, 0);
}