C-Simple-JSON-Parser icon indicating copy to clipboard operation
C-Simple-JSON-Parser copied to clipboard

Extremely lightweight, easy-to-use & blazing fast JSON parsing library written in pure C

Results 2 C-Simple-JSON-Parser issues
Sort by recently updated
recently updated
newest added
trafficstars

**What is the proper guideline for `json_free()` to prevent memory leaks?** It seems to me from the recursive nature of `json_free()` that it is sufficient to call it for the...

bug
critical

When passing an unitialized (or zero'ed) json_element_t to json_free() ` typed(json_element) root_element = { 0 };` ` ... do something, maybe fail along the way ...` ` json_free(&root_element);` it assumes...