ORIGINAL
Loading...
Searching...
No Matches
config.h
Go to the documentation of this file.
1#ifndef CONFIG_H
2#define CONFIG_H
3
10
11#include "cstdint"
12
13namespace original {
14
20 using byte = std::uint8_t;
21
27 using s_byte = std::int8_t;
28
35 using integer = std::int64_t;
36
43 using u_integer = std::uint32_t;
44
51 using floating = double;
52
59 using l_floating = long double;
60}
61
62#endif //CONFIG_H
Main namespace for the project Original.
Definition algorithms.h:21
std::uint32_t u_integer
32-bit unsigned integer type for sizes and indexes
Definition config.h:43
std::int8_t s_byte
Signed 8-bit integer type.
Definition config.h:27
double floating
Double-precision floating-point type.
Definition config.h:51
long double l_floating
Extended precision floating-point type.
Definition config.h:59
std::int64_t integer
64-bit signed integer type for arithmetic operations
Definition config.h:35
std::uint8_t byte
Unsigned 8-bit integer type (byte)
Definition config.h:20