musl-tcc/src/multibyte/mblen.c

7 lines
85 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <stdlib.h>
int mblen(const char *s, size_t n)
{
return mbtowc(0, s, n);
}