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

123456789101112131415161718192021222324
  1. /**
  2. * @file
  3. * @brief Do not use, json-c internal, may be changed or removed at any time.
  4. */
  5. #ifndef _json_inttypes_h_
  6. #define _json_inttypes_h_
  7. #include "json_config.h"
  8. #ifdef JSON_C_HAVE_INTTYPES_H
  9. /* inttypes.h includes stdint.h */
  10. #include <inttypes.h>
  11. #else
  12. #include <stdint.h>
  13. #define PRId64 "I64d"
  14. #define SCNd64 "I64d"
  15. #define PRIu64 "I64u"
  16. #endif
  17. #endif