coreJSON  v1.0.0
A parser strictly enforcing the ECMA-404 JSON standard, suitable for microcontrollers
JSON_Search

Find a key in a JSON object and output the pointer outValue to its value.

size_t max,
const char * queryKey,
size_t queryKeyLength,
char separator,
char ** outValue,
size_t * outValueLength );

See core_json.h for docs.

Handle a nested search by iterating over the parts of the queryKey.

JSONStatus_t
JSONStatus_t
Return codes from coreJSON library functions.
Definition: core_json.h:38
JSON_Search
JSONStatus_t JSON_Search(char *buf, size_t max, const char *queryKey, size_t queryKeyLength, char separator, char **outValue, size_t *outValueLength)
Find a key in a JSON object and output the pointer outValue to its value.
Definition: core_json.c:1325