Allows changing the format for signed char (by default 8-bit).
-schar_size 1 | 2 | 4
The arguments are as follows:
1: 8-bit
2: 16-bit
4: 32-bit
1
__CHAR_IS_8BIT__
__CHAR_IS_16BIT__
__CHAR_IS_32BIT__
For integrity and compliance to ANSI, the following must hold:
sizeof(char) <= sizeof(short)
For more information, refer to the topic Data Types.