12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef _json_c_version_h_
- #define _json_c_version_h_
- #define JSON_C_MAJOR_VERSION 0
- #define JSON_C_MINOR_VERSION 13
- #define JSON_C_MICRO_VERSION 01
- #define JSON_C_VERSION_NUM ((JSON_C_MAJOR_VERSION << 16) | \
- (JSON_C_MINOR_VERSION << 8) | \
- JSON_C_MICRO_VERSION)
- #define JSON_C_VERSION "0.13.1"
- const char *json_c_version(void);
- int json_c_version_num(void);
- #endif
|