| 2379 | } |
| 2380 | |
| 2381 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newitem) |
| 2382 | { |
| 2383 | return replace_item_in_object(object, string, newitem, false); |
| 2384 | } |
| 2385 | |
| 2386 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem) |
| 2387 | { |
nothing calls this directly
no test coverage detected