An open API service indexing awesome lists of open source software.

https://github.com/letmutx/json-deserializer

JSON deserializer
https://github.com/letmutx/json-deserializer

c deserializer json

Last synced: about 1 month ago
JSON representation

JSON deserializer

Awesome Lists containing this project

README

          

# json-deserializer
JSON deserializer

* Follows the spec at https://json.org (No guarantees! :-))
* Recursively parses the input string.
* The deserializer itself doesn't assume any particular json structure, but the query system does. For sample structure, look at tests.
* Objects are hashtable with separate chaining
* Arrays are C arrays with type info.
* Numbers are floating point only.
* Duplicate keys at same level are **not** handled properly.