Types.hpp 304 B

1234567891011121314151617
  1. #ifndef CORE_TYPES_HPP
  2. #define CORE_TYPES_HPP
  3. #include <stdint.h>
  4. using i64 = int64_t;
  5. using i32 = int32_t;
  6. using i16 = int16_t;
  7. using i8 = int8_t;
  8. using u64 = uint64_t;
  9. using u32 = uint32_t;
  10. using u16 = uint16_t;
  11. using u8 = uint8_t;
  12. using c32 = char32_t;
  13. using size_t = decltype(sizeof(int));
  14. #endif