diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-11-24 19:42:42 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-11-24 19:42:42 +0300 |
commit | fcf77faf19dcb9d75b7842ec7138551bd73418cf (patch) | |
tree | 24da880c4513c3da7899d39b754a0a5cc8407615 /libprakpp/include/prakcommon.hpp | |
parent | 89d26d5d0e8ff2b026cc99606868699f6fcc08db (diff) |
Added 101 prak
Diffstat (limited to 'libprakpp/include/prakcommon.hpp')
-rw-r--r-- | libprakpp/include/prakcommon.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libprakpp/include/prakcommon.hpp b/libprakpp/include/prakcommon.hpp index 749d5ef..45030d0 100644 --- a/libprakpp/include/prakcommon.hpp +++ b/libprakpp/include/prakcommon.hpp @@ -5,6 +5,25 @@ #include <vector> #include <iostream> +typedef void i0; +typedef int8_t i8; +typedef uint8_t u8; +typedef int16_t i16; +typedef uint16_t u16; +typedef int32_t i32; +typedef uint32_t u32; +typedef int64_t i64; +typedef uint64_t u64; +typedef ssize_t isz; +typedef size_t usz; +typedef float f32; +typedef double f64; +#if __SIZEOF_LONG_DOUBLE__ == 16 +typedef long double f128; +#else +typedef long double _f64; +#endif + #if defined(_MSC_VER) || !defined(__cpp_multidimensional_subscript) || __cplusplus < 202110L #warning "can not use multidimentional subscript operator: falling back to `operator()`" #undef MDSUBSCRIPT |