Searched refs:cJSON_ParseWithLength (Results 1 – 5 of 5) sorted by relevance
218 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()
149 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length);
290 …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);
42 * add new API of cJSON_ParseWithLength without breaking changes. Thanks @caglarivriz, see [#358](ht…
1185 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length) in cJSON_ParseWithLength() function