| 2368 | } |
| 2369 | |
| 2370 | CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem) |
| 2371 | { |
| 2372 | return replace_item_in_object(object, string, newitem, true); |
| 2373 | } |
| 2374 | |
| 2375 | /* Create basic types: */ |
| 2376 | CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void) |
nothing calls this directly
no test coverage detected