Types.h 151 B

1234567891011
  1. #ifndef TYPES_H
  2. #define TYPES_H
  3. #include <stdint.h>
  4. typedef int8_t int8;
  5. typedef int16_t int16;
  6. typedef int32_t int32;
  7. typedef int64_t int64;
  8. #endif