musl-tcc/src/ctype/__ctype_get_mb_cur_max.c

8 lines
102 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <stdlib.h>
#include "locale_impl.h"
size_t __ctype_get_mb_cur_max()
{
return MB_CUR_MAX;
}