| 2438 | } |
| 2439 | |
| 2440 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem) |
| 2441 | { |
| 2442 | return replace_item_in_object(object, string, newitem, true); |
| 2443 | } |
| 2444 | |
| 2445 | /* Create basic types: */ |
| 2446 | CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void) |
searching dependent graphs…