修改bstlint

This commit is contained in:
CupWater
2026-08-16 15:00:09 +08:00
parent e0c47fbd8a
commit fb2b24bc72
7 changed files with 18 additions and 2 deletions
+4
View File
@@ -0,0 +1,4 @@
#ifndef BETTERSTL_BIGDECIMAL_H
#define BETTERSTL_BIGDECIMAL_H
#endif //BETTERSTL_BIGDECIMAL_H
+4
View File
@@ -0,0 +1,4 @@
#ifndef BETTERSTL_BIGINTEGER_HPP
#define BETTERSTL_BIGINTEGER_HPP
#endif //BETTERSTL_BIGINTEGER_HPP
+7
View File
@@ -0,0 +1,7 @@
#ifndef BETTERSTL_BIGNUMS_HPP
#define BETTERSTL_BIGNUMS_HPP
#include <bstl/biginteger.hpp>
#include <bstl/bigdecimal.hpp>
#endif //BETTERSTL_BIGNUMS_HPP
+6
View File
@@ -0,0 +1,6 @@
#ifndef BETTERSTL_BSTL_HPP
#define BETTERSTL_BSTL_HPP
#include <bstl/bstlint.hpp>
#endif //BETTERSTL_BSTL_HPP
+18
View File
@@ -0,0 +1,18 @@
#ifndef BETTERSTL_BSTLINT_HPP
#define BETTERSTL_BSTLINT_HPP
#include <cstdint>
typedef std::int8_t i8;
typedef std::int16_t i16;
typedef std::int32_t i32;
typedef std::int64_t i64;
typedef std::uint8_t u8;
typedef std::uint16_t u16;
typedef std::uint32_t u32;
typedef std::uint64_t u64;
typedef float f32;
typedef double f64;
typedef long double f128;
#endif //BETTERSTL_BSTLINT_HPP