Types.h 275 B

1234567891011121314151617
  1. #ifndef TYPES_H
  2. #define TYPES_H
  3. #include <inttypes.h>
  4. typedef int64_t int64;
  5. typedef int32_t int32;
  6. typedef int16_t int16;
  7. typedef int8_t int8;
  8. typedef uint64_t uint64;
  9. typedef uint32_t uint32;
  10. typedef uint16_t uint16;
  11. typedef uint8_t uint8;
  12. typedef uint32_t Hash;
  13. #endif