| 2363 | } |
| 2364 | |
| 2365 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newitem) |
| 2366 | { |
| 2367 | return replace_item_in_object(object, string, newitem, false); |
| 2368 | } |
| 2369 | |
| 2370 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem) |
| 2371 | { |
nothing calls this directly
no test coverage detected