Title | Data |
Type name | Description |
|---|---|
Uint8 | Unsigned 1-byte integer |
Sint8 | signed 1 byte integer |
Uint16 | Unsigned 2-byte integer |
Sint16 | signed 2-byte integer |
Uint32 | Unsigned 4-byte integer |
Sint32 | signed 4-byte integer |
Bool | Logical 4-byte integer (takes a logical constant as value) |
(2) Logical constant
Used as a logical (Bool) value.
constant name | value | Description |
|---|---|---|
FALSE | 0 | Represents logical false |
TRUE | 1 | Represents a logical value |
(3) Other
constant name | value | Description |
|---|---|---|
NULL | ((void *)0) | NULL pointer |