8 lines
151 B
C
8 lines
151 B
C
#pragma once
|
|
|
|
typedef signed char int8_t;
|
|
typedef short int int16_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
typedef unsigned short uint16_t;
|