Files
2015-04-16 09:16:48 +02:00

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);
}