]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/multibyte/mblen.c
Update to musl 1.2.3.
[wasi-libc.git] / libc-top-half / musl / src / multibyte / mblen.c
1 #include <stdlib.h>
2
3 int mblen(const char *s, size_t n)
4 {
5 return mbtowc(0, s, n);
6 }