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

1234567891011121314151617181920212223
  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. #endif
  16. #endif