| 2453 | } |
| 2454 | |
| 2455 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem) |
| 2456 | { |
| 2457 | return replace_item_in_object(object, string, newitem, true); |
| 2458 | } |
| 2459 | |
| 2460 | /* Create basic types: */ |
| 2461 | CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void) |
nothing calls this directly
no test coverage detected