centijson icon indicating copy to clipboard operation
centijson copied to clipboard

C JSON parser (both, SAX-like & full DOM)

Results 4 centijson issues
Sort by recently updated
recently updated
newest added

Something like https://github.com/json-parser/json-parser (where api allow to pass settings with callbacks)?

We need some better benchmarks. Created a [PR](https://github.com/miloyip/nativejson-benchmark/pull/124) for [nativejson-benchmark](https://github.com/miloyip/nativejson-benchmark) which seems to be more or less the best out there for the purpose.

README needs more code examples. It's unclear how to output JSON object or JSON array without the use of DOM library and intermediate DOM representation. Something like ```cpp writer.StartObject(); writer.Key("hello");...

malloc.h is not a standard C header and is missing on many platforms (eg: macos). stdlib.h should cover what is in malloc.h so it is unnecessary.