You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stdint.h 444B

123456789101112131415161718192021222324
  1. #ifndef _STDINT_H
  2. #define _STDINT_H
  3. #include <bits/stdint.h>
  4. typedef int8_t s8;
  5. typedef uint8_t u8;
  6. typedef int16_t s16;
  7. typedef uint16_t u16;
  8. typedef int32_t s32;
  9. typedef uint32_t u32;
  10. typedef int64_t s64;
  11. typedef uint64_t u64;
  12. typedef int8_t int8;
  13. typedef uint8_t uint8;
  14. typedef int16_t int16;
  15. typedef uint16_t uint16;
  16. typedef int32_t int32;
  17. typedef uint32_t uint32;
  18. typedef int64_t int64;
  19. typedef uint64_t uint64;
  20. #endif /* _STDINT_H */