10 lines
232 B
C
10 lines
232 B
C
#pragma once
|
|
|
|
typedef signed char int8_t;
|
|
typedef signed short int int16_t;
|
|
typedef signed long int int32_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
typedef unsigned short int uint16_t;
|
|
typedef unsigned long int uint32_t;
|