aboutsummaryrefslogtreecommitdiffstats
path: root/helpers/mb_cur_max.c
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/mb_cur_max.c')
-rw-r--r--helpers/mb_cur_max.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/helpers/mb_cur_max.c b/helpers/mb_cur_max.c
new file mode 100644
index 00000000..c36d7ef7
--- /dev/null
+++ b/helpers/mb_cur_max.c
@@ -0,0 +1,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;
+}