aboutsummaryrefslogtreecommitdiffstats
path: root/helpers/mb_cur_max.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-06-11 07:24:31 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-06-11 07:24:31 +0300
commit1362f223522450a6395623b97000bc70464566ab (patch)
tree2da069249f34f92fb6e9147bdd5e544d32d9d3c6 /helpers/mb_cur_max.c
parent5c7385d36987e4eaad95a4ff3a7d735014833f90 (diff)
parent72882c6a1e76730e6e706941a1a3a855ea023b69 (diff)
downloadegawk-1362f223522450a6395623b97000bc70464566ab.tar.gz
egawk-1362f223522450a6395623b97000bc70464566ab.tar.bz2
egawk-1362f223522450a6395623b97000bc70464566ab.zip
Merge branch 'master' into feature/regex-type
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;
+}