Typedef names that designate signed and unsigned integer types with at least the specified width and that are usually the fastest to work with.
Include
<stdint.h>
Type | Description |
---|---|
int_fast8_t |
The fastest signed integer of at least 8 bits width. |
int_fast16_t |
The fastest signed integer of at least 16 bits width. |
int_fast24_t |
The fastest signed integer of at least 24 bits width. |
int_fast32_t |
The fastest signed integer of at least 32 bits width. |
int_fast64_t |
The fastest signed integer of at least 64 bits width (see Attention note). |
uint_fast8_t |
The fastest unsigned integer of at least 8 bits width. |
uint_fast16_t |
The fastest unsigned integer of at least 16 bits width. |
uint_fast24_t |
The fastest unsigned integer of at least 24 bits width. |
uint_fast32_t |
The fastest unsigned integer of at least 32 bits width. |
uint_fast64_t |
The fastest unsigned integer of at least 64 bits width (see Attention note). |