From 2f2ddc1f2dbca56c874e8f9c31b5b963202d80e7 Mon Sep 17 00:00:00 2001 From: Eric Haszlakiewicz Date: Thu, 14 Apr 2022 01:12:43 +0000 Subject: Generate docs for the 0.16 release --- doc/html/json__c__version_8h.html | 199 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 doc/html/json__c__version_8h.html (limited to 'doc/html/json__c__version_8h.html') diff --git a/doc/html/json__c__version_8h.html b/doc/html/json__c__version_8h.html new file mode 100644 index 0000000..3b049c6 --- /dev/null +++ b/doc/html/json__c__version_8h.html @@ -0,0 +1,199 @@ + + + + + +json-c: json_c_version.h File Reference + + + + + + +
+
+ + + + + + +
+
json-c +  0.16 +
+
+
+ + + + +
+
+ +
+
json_c_version.h File Reference
+
+
+ +

Methods for retrieving the json-c version. +More...

+ + + + + + + + + + + + + + +

+Macros

#define JSON_C_MAJOR_VERSION   0
 
#define JSON_C_MINOR_VERSION   16
 
#define JSON_C_MICRO_VERSION   0
 
#define JSON_C_VERSION_NUM   ((JSON_C_MAJOR_VERSION << 16) | (JSON_C_MINOR_VERSION << 8) | JSON_C_MICRO_VERSION)
 
#define JSON_C_VERSION   "0.16"
 
#define JSON_EXPORT   extern
 
+ + + + + +

+Functions

JSON_EXPORT const char * json_c_version (void)
 
JSON_EXPORT int json_c_version_num (void)
 
+

Detailed Description

+

Methods for retrieving the json-c version.

+

Macro Definition Documentation

+ +
+
+ + + + +
#define JSON_C_MAJOR_VERSION   0
+
+ +
+
+ +
+
+ + + + +
#define JSON_C_MICRO_VERSION   0
+
+ +
+
+ +
+
+ + + + +
#define JSON_C_MINOR_VERSION   16
+
+ +
+
+ +
+
+ + + + +
#define JSON_C_VERSION   "0.16"
+
+ +
+
+ +
+
+ + + + +
#define JSON_C_VERSION_NUM   ((JSON_C_MAJOR_VERSION << 16) | (JSON_C_MINOR_VERSION << 8) | JSON_C_MICRO_VERSION)
+
+ +
+
+ +
+
+ + + + +
#define JSON_EXPORT   extern
+
+ +
+
+

Function Documentation

+ +
+
+ + + + + + + + +
JSON_EXPORT const char* json_c_version (void )
+
+
See Also
JSON_C_VERSION
+
Returns
the version of the json-c library as a string
+ +
+
+ +
+
+ + + + + + + + +
JSON_EXPORT int json_c_version_num (void )
+
+

The json-c version encoded into an int, with the low order 8 bits being the micro version, the next higher 8 bits being the minor version and the next higher 8 bits being the major version. For example, 7.12.99 would be 0x00070B63.

+
See Also
JSON_C_VERSION_NUM
+
Returns
the version of the json-c library as an int
+ +
+
+
+ + + + -- cgit v1.2.1