Releases: whyisitworking/C-Simple-JSON-Parser
Releases · whyisitworking/C-Simple-JSON-Parser
v2.3.2
v2.3.1
Fixed
- Warnings
Breaking changes
JSON_SCRAPE_WHITESPACE
changed toJSON_SKIP_WHITESPACE
v2.3
- Added differentiation between
long
anddouble
fortyped(json_number)
- Fixed first example in README
v2.2
- Lookup elements from an object with keys
Full RFC-8259 compliance
Changes
- Null elements/entries are ignored correctly
- Heterogeneous array support
v2.0.0
Complete revamp with multiple type support
Types
JSON_TYPE_STRING
: StringJSON_TYPE_NUMBER
: Number (Double)JSON_TYPE_OBJECT
: ObjectJSON_TYPE_ARRAY
: ArrayJSON_TYPE_BOOLEAN
: Boolean
Data structures
json_string_t
json_number_t
json_object_t
json_array_t
json_boolean_t