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
- Host: GitHub
- URL: https://github.com/letmutx/json-deserializer
- Owner: letmutx
- Created: 2017-12-14T16:14:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-14T16:39:53.000Z (over 8 years ago)
- Last Synced: 2026-04-04T07:33:03.030Z (2 months ago)
- Topics: c, deserializer, json
- Language: C
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.