summaryrefslogtreecommitdiff
path: root/helpers/mb_cur_max.c
blob: c36d7ef7286e875eff6cd91a0f18128349ee6953 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <locale.h>
#include <stdlib.h>

int main()
{
	setlocale(LC_ALL, "");
	printf("MB_CUR_MAX = %lu\n", MB_CUR_MAX);
	return 0;
}