Types.h 231 B

1234567891011121314151617
  1. #ifndef TYPES_H
  2. #define TYPES_H
  3. #include <cstdint>
  4. typedef uint8_t u8;
  5. typedef uint16_t u16;
  6. typedef uint32_t u32;
  7. typedef uint64_t u64;
  8. typedef int8_t s8;
  9. typedef int16_t s16;
  10. typedef int32_t s32;
  11. typedef int64_t s64;
  12. #endif