| 2241 | } |
| 2242 | |
| 2243 | CJSON_PUBLIC(void) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newitem) |
| 2244 | { |
| 2245 | replace_item_in_object(object, string, newitem, false); |
| 2246 | } |
| 2247 | |
| 2248 | CJSON_PUBLIC(void) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem) |
| 2249 | { |
nothing calls this directly
no test coverage detected