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