| 1408 | } |
| 1409 | |
| 1410 | CJSON_PUBLIC(cJSON *) cJSONUtils_MergePatchCaseSensitive(cJSON *target, const cJSON *const patch) |
| 1411 | { |
| 1412 | return merge_patch(target, patch, true); |
| 1413 | } |
| 1414 | |
| 1415 | static cJSON *generate_merge_patch(cJSON *const from, cJSON *const to, const cJSON_bool case_sensitive) |
| 1416 | { |
nothing calls this directly
no test coverage detected