16FXlib
Integer types (inttypes.h)

Detailed Description

#include "inttypes.h"
Overview
Type definitions for integer variables

Typedefs

typedef unsigned char uint8_t
 
typedef char int8_t
 
typedef unsigned int uint16_t
 
typedef int int16_t
 
typedef unsigned long uint32_t
 
typedef long int32_t
 

Macros

#define UINT8(x)   (uint8_t)(x)
 

Typedef Documentation

typedef unsigned char uint8_t

Unsigned integer, 8 bit

Definition at line 35 of file inttypes.h.

typedef char int8_t

Signed integer, 8 bit

Definition at line 45 of file inttypes.h.

typedef unsigned int uint16_t

Unsigned integer, 16 bit

Definition at line 50 of file inttypes.h.

typedef int int16_t

Signed integer, 16 bit

Definition at line 55 of file inttypes.h.

typedef unsigned long uint32_t

Unsigned integer, 32 bit

Definition at line 60 of file inttypes.h.

typedef long int32_t

Signed integer, 32 bit

Definition at line 65 of file inttypes.h.

Macro Definition Documentation

#define UINT8 (   x)    (uint8_t)(x)

Casts a value to an unsigned integer, 8 bit

Definition at line 40 of file inttypes.h.