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 255 B

12345678910111213141516171819
  1. #ifndef _json_inttypes_h_
  2. #define _json_inttypes_h_
  3. #include "json_config.h"
  4. #ifdef JSON_C_HAVE_INTTYPES_H
  5. /* inttypes.h includes stdint.h */
  6. #include <inttypes.h>
  7. #else
  8. #include <stdint.h>
  9. #define PRId64 "I64d"
  10. #define SCNd64 "I64d"
  11. #endif
  12. #endif