Skip to content

Releases: whyisitworking/C-Simple-JSON-Parser

v2.3.2

22 Feb 08:53
3eec294
Compare
Choose a tag to compare

Removed warnings generated by compiling with -pedantic, -Wall & -Wextra.

v2.3.1

22 Sep 17:28
a597dd1
Compare
Choose a tag to compare

Fixed

  • Warnings

Breaking changes

  • JSON_SCRAPE_WHITESPACE changed to JSON_SKIP_WHITESPACE

v2.3

09 Oct 07:05
904a33f
Compare
Choose a tag to compare
  • Added differentiation between long and double for typed(json_number)
  • Fixed first example in README

v2.2

19 Jul 09:58
3a4ebff
Compare
Choose a tag to compare
  • Lookup elements from an object with keys

Full RFC-8259 compliance

10 Jul 17:44
a72edff
Compare
Choose a tag to compare

Changes

  • Null elements/entries are ignored correctly
  • Heterogeneous array support

v2.0.0

17 May 17:06
Compare
Choose a tag to compare

Complete revamp with multiple type support

Types

  • JSON_TYPE_STRING : String
  • JSON_TYPE_NUMBER : Number (Double)
  • JSON_TYPE_OBJECT : Object
  • JSON_TYPE_ARRAY : Array
  • JSON_TYPE_BOOLEAN : Boolean

Data structures

  • json_string_t
  • json_number_t
  • json_object_t
  • json_array_t
  • json_boolean_t