blob: 07fa11ee443624540cecf9602f74c245a2087e65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
using int8_t = char;
using int16_t = short;
using int32_t = int;
using int64_t = long long;
using uint8_t = unsigned char;
using uint16_t = unsigned short;
using uint32_t = unsigned int;
using uint64_t = unsigned long long;
|