summaryrefslogtreecommitdiff
path: root/asl/integers.hpp
blob: b5d3e99f3aaa5caa3032806c8a6eaa71a645ecb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;

using isize_t = int64_t;