summaryrefslogtreecommitdiff
path: root/vc++/inttypes.h
blob: 51f14e909c70a77d5ce1141420b6730bac89866e (plain)
1
2
3
4
5
6
7
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed int int32_t;

typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;