blob: 4961e343d9c2b195c6871ee3ef34cee56817fb97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
*/
|