Integer Types

Defines integer types with specific properties.

The stdint.h header file defines several types of integer based on variations of the compiler's built-in integer types ( unsigned int, int, long int, and so on). Unlike the general properties of the compiler's integer types, these type definitions have specific properties. The type names describe the integer's properties. Type names beginning with int represent types for signed integers in two's-complement form. Type names beginning with uint are unsigned integer types.

These integer types are: