Types.h 241 B

123456789101112131415
  1. #ifndef CORE_TYPES_H
  2. #define CORE_TYPES_H
  3. #include <inttypes.h>
  4. typedef int64_t i64;
  5. typedef int32_t i32;
  6. typedef int16_t i16;
  7. typedef int8_t i8;
  8. typedef uint64_t u64;
  9. typedef uint32_t u32;
  10. typedef uint16_t u16;
  11. typedef uint8_t u8;
  12. #endif