amiga-ixemul/wchar/mblen.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);
}