stdint.h 385 B

12345678910111213141516171819
  1. /**
  2. * Replacement of gcc' stdint.h for MSVC
  3. */
  4. #ifndef STDINT_H
  5. #define STDINT_H
  6. typedef signed char int8_t;
  7. typedef signed short int16_t;
  8. typedef signed int int32_t;
  9. typedef signed long long int64_t;
  10. typedef unsigned char uint8_t;
  11. typedef unsigned short uint16_t;
  12. typedef unsigned int uint32_t;
  13. typedef unsigned long long uint64_t;
  14. #endif