summaryrefslogtreecommitdiff
path: root/asl/integers.hpp
blob: 716b9813807bc966af10c45504d381c3227e20e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

using int8_t  = signed char;
using int16_t = signed short;
using int32_t = signed int;
using int64_t = signed long;

// @Todo Proper type definition for Windows/Linux

using uint8_t  = unsigned char;
using uint16_t = unsigned short;
using uint32_t = unsigned int;
using uint64_t = unsigned long;

using size_t  = uint64_t;
using isize_t = int64_t;