#include int mblen(const char *s, size_t n) { return mbtowc(0, s, n); } #ifdef TEST int main(void) { return 0; } #endif