• source navigation  • diff markup  • identifier search  • freetext search  • 

Sources/json-c/json_inttypes.h

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

This page was automatically generated by LXR 0.3.1.  •  OpenWrt