| 2448 | } |
| 2449 | |
| 2450 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newitem) |
| 2451 | { |
| 2452 | return replace_item_in_object(object, string, newitem, false); |
| 2453 | } |
| 2454 | |
| 2455 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem) |
| 2456 | { |
nothing calls this directly
no test coverage detected