Allows changing the format for signed/unsigned long long (by default 32-bit).
-llong_size 1 | 2 | 4
The arguments are as follows:1(8-bit)
2 : 16-bit
4 : 32-bit
4
__LONG_LONG_IS_8BIT__
__LONG_LONG_IS_16BIT__
__LONG_LONG_IS_32BIT__
For integrity and compliance to ANSI, the following must hold:
sizeof(long) <= sizeof(long long)
For more information, refer to the topic Data Types.