添加bstlint

This commit is contained in:
CupWater
2026-08-16 14:41:23 +08:00
parent abd82e6961
commit 856a1e1599
2 changed files with 21 additions and 0 deletions
+2
View File
@@ -1,4 +1,6 @@
#ifndef BETTERSTL_BSTL_HPP
#define BETTERSTL_BSTL_HPP
#include <bstlint.hpp>
#endif //BETTERSTL_BSTL_HPP
+19
View File
@@ -0,0 +1,19 @@
#ifndef BETTERSTL_BSTLINT_HPP
#define BETTERSTL_BSTLINT_HPP
#include <cstdint>
#include <>
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 f16;
typedef double f32;
typedef long double f64;
#endif //BETTERSTL_BSTLINT_HPP