summaryrefslogtreecommitdiff
path: root/helpers/mb_cur_max.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-05-27 22:40:48 -0400
committerArnold D. Robbins <arnold@skeeve.com>2015-05-27 22:40:48 -0400
commita188a60ef38c39c7ddda96fdd88c5abb4feebe2b (patch)
tree6805229d637db2a450873c3e0de03cc7ec72a2c8 /helpers/mb_cur_max.c
parente07a65e10d9a9eb04ef97b2fb2f885c5595d8fac (diff)
downloadgawk-a188a60ef38c39c7ddda96fdd88c5abb4feebe2b.tar.gz
Add two new helper programs.
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;
+}