Types.h 331 B

123456789101112131415161718192021222324
  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. typedef uint8_t uint8;
  12. typedef uint16_t uint16;
  13. typedef uint32_t uint32;
  14. typedef uint64_t uint64;
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif