Types.h 232 B

12345678910111213141516171819
  1. #ifndef SNUVI_TYPES_H
  2. #define SNUVI_TYPES_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <stdint.h>
  7. typedef int8_t int8;
  8. typedef int16_t int16;
  9. typedef int32_t int32;
  10. typedef int64_t int64;
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif