| 2433 | } |
| 2434 | |
| 2435 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newitem) |
| 2436 | { |
| 2437 | return replace_item_in_object(object, string, newitem, false); |
| 2438 | } |
| 2439 | |
| 2440 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem) |
| 2441 | { |
searching dependent graphs…