10 lines
121 B
C
10 lines
121 B
C
#include <stdlib.h>
|
|
#include <wchar.h>
|
|
|
|
#undef mblen
|
|
|
|
int mblen(const char *s, size_t n)
|
|
{
|
|
return mbtowc(NULL, s, n);
|
|
}
|