diff --git a/include/bstl.hpp b/include/bstl.hpp index 1191fe4..4a94a8b 100644 --- a/include/bstl.hpp +++ b/include/bstl.hpp @@ -1,3 +1,7 @@ #pragma once #include -#include \ No newline at end of file +#include +#include +#ifndef BETTERSTL_BSTL_HPP +#define BETTERSTL_BSTL_HPP +#endif //BETTERSTL_BSTL_HPP diff --git a/include/bstlint.hpp b/include/bstlint.hpp new file mode 100644 index 0000000..57cc816 --- /dev/null +++ b/include/bstlint.hpp @@ -0,0 +1,19 @@ +#ifndef BETTERSTL_BSTLINT_HPP +#define BETTERSTL_BSTLINT_HPP + +#include +#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 f32; +typedef double f64; +typedef long double f128; + +#endif //BETTERSTL_BSTLINT_HPP