musl-tcc/src/ctype/__ctype_get_mb_cur_max.c

8 lines
102 B
C

#include <stdlib.h>
#include "locale_impl.h"
size_t __ctype_get_mb_cur_max()
{
return MB_CUR_MAX;
}