Types.h 257 B

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