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

json_inttypes.h 357 B

123456789101112131415161718192021
  1. #ifndef _json_inttypes_h_
  2. #define _json_inttypes_h_
  3. #if defined(_MSC_VER) && _MSC_VER < 1600
  4. /* Anything less than Visual Studio C++ 10 is missing stdint.h and inttypes.h */
  5. typedef __int64 int64_t;
  6. #define PRId64 "I64d"
  7. #define SCNd64 "I64d"
  8. #else
  9. #ifdef HAVE_INTTYPES_H
  10. #include <inttypes.h>
  11. #endif
  12. /* inttypes.h includes stdint.h */
  13. #endif
  14. #endif