summaryrefslogtreecommitdiff
path: root/src/stdlib/MB_CUR_MAX.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/MB_CUR_MAX.c')
-rw-r--r--src/stdlib/MB_CUR_MAX.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/stdlib/MB_CUR_MAX.c b/src/stdlib/MB_CUR_MAX.c
new file mode 100644
index 00000000..4961e343
--- /dev/null
+++ b/src/stdlib/MB_CUR_MAX.c
@@ -0,0 +1,15 @@
+#include <stdlib.h>
+
+/** current longest multibyte character **/
+
+#define MB_CUR_MAX (4)
+
+/***
+is the maximum number of bytes required to store any character in the current
+multibyte character set as specified by CONSTANT(LC_CTYPE).
+***/
+
+/*
+VALUE_MAX(CONSTANT(MB_LEN_MAX))
+STDC(1)
+*/