Standard types
<
oska/types.h> makes available the standard (ISO C) integral fixed-width types (
uint8_t,
uint16_t,
uint32_t,
int8_t,
int16_t,
int32_t) and
bool (plus the
true and
false values).
int64_t and
uint64_t are provided if supported by the platform.
- Note:
- On some implementation, bool is not the ISO C bool type but is an integral type. Therefore, care must be take to not compare bool variables with true or false.