| 1403 | } |
| 1404 | |
| 1405 | CJSON_PUBLIC(cJSON *) cJSONUtils_MergePatch(cJSON *target, const cJSON *const patch) |
| 1406 | { |
| 1407 | return merge_patch(target, patch, false); |
| 1408 | } |
| 1409 | |
| 1410 | CJSON_PUBLIC(cJSON *) cJSONUtils_MergePatchCaseSensitive(cJSON *target, const cJSON *const patch) |
| 1411 | { |
nothing calls this directly
no test coverage detected