| 2384 | } |
| 2385 | |
| 2386 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem) |
| 2387 | { |
| 2388 | return replace_item_in_object(object, string, newitem, true); |
| 2389 | } |
| 2390 | |
| 2391 | /* Create basic types: */ |
| 2392 | CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void) |
nothing calls this directly
no test coverage detected