qxLib
typedefs.h
Go to the documentation of this file.
1 /**
2 
3  @file typedefs.h
4  @author Khrapov
5  @date 18.06.2019
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <cstddef>
12 #include <cstdint>
13 #include <limits>
14 
15 //!< 1 or 2 bytes for pointer arithmetic
16 using mem_t = char*;
17 
18 //!< 0 .. 255
19 using u8 = uint8_t;
20 //!< 0 .. 65 535
21 using u16 = uint16_t;
22 //!< 0 .. 4 294 967 295
23 using u32 = uint32_t;
24 //!< 0 .. 18 446 744 073 709 551 615
25 using u64 = uint64_t;
26 
27 //!< - 128 .. 127
28 using i8 = int8_t;
29 //!< – 32 768 .. 32 767
30 using i16 = int16_t;
31 //!< − 2 147 483 648 .. 2 147 483 647
32 using i32 = int32_t;
33 //!< − 9 223 372 036 854 775 808 .. 9 223 372 036 854 775 807
34 using i64 = int64_t;
char * mem_t
0 .. 255
Definition: typedefs.h:18
int8_t i8
– 32 768 .. 32 767
Definition: typedefs.h:29
uint64_t u64
Definition: typedefs.h:27
uint16_t u16
0 .. 4 294 967 295
Definition: typedefs.h:22
uint32_t u32
0 .. 18 446 744 073 709 551 615
Definition: typedefs.h:24
int16_t i16
− 2 147 483 648 .. 2 147 483 647
Definition: typedefs.h:31
uint8_t u8
0 .. 65 535
Definition: typedefs.h:20
int32_t i32
− 9 223 372 036 854 775 808 .. 9 223 372 036 854 775 807
Definition: typedefs.h:33