Home
last modified time | relevance | path

Searched refs:cJSON_ParseWithLength (Results 1 – 5 of 5) sorted by relevance

/third_party/cJSON/tests/
Dparse_examples.c218 tree = cJSON_ParseWithLength(test_13_wo_null, sizeof(test_13) - 1); in test13_should_be_parsed_without_null_termination()
244 tree = cJSON_ParseWithLength(test_14, sizeof(test_14) - 2); in test14_should_not_be_parsed()
/third_party/cJSON/
DcJSON.h149 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length);
DREADME.md290 …e JSON in a string (whether zero terminated or not), you can parse it with `cJSON_ParseWithLength`.
293 cJSON *json = cJSON_ParseWithLength(string, buffer_length);
DCHANGELOG.md42 * add new API of cJSON_ParseWithLength without breaking changes. Thanks @caglarivriz, see [#358](ht…
DcJSON.c1185 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length) in cJSON_ParseWithLength() function