Very low footprint JSON parser written in portable ANSI C.
- BSD licensed with no dependencies (i.e. just drop the C file into your project)
- Never recurses or allocates more memory than it needs
- Very simple API with operator sugar for C++
API
json_value * json_parse
(const json_char * json);
json_value * json_parse_ex
(json_settings * settings, const json_char * json, char * error);
void json_value_free
(json_value *);
The type
field of json_value
is one of:
json_object
(seeu.object.length
,u.object.values[x].name
,u.object.values[x].value
)json_array
(seeu.array.length
,u.array.values
)json_integer
(seeu.integer
)json_double
(seeu.dbl
)json_string
(seeu.string.ptr
,u.string.length
)json_boolean
(seeu.boolean
)json_null