int.h 238 B

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