| 1341 | CJSON_PUBLIC(void) cJSONUtils_SortObject(cJSON *const object) { sort_object(object, false); } |
| 1342 | |
| 1343 | CJSON_PUBLIC(void) cJSONUtils_SortObjectCaseSensitive(cJSON *const object) { sort_object(object, true); } |
| 1344 | |
| 1345 | static cJSON *merge_patch(cJSON *target, const cJSON *const patch, const cJSON_bool case_sensitive) |
| 1346 | { |
nothing calls this directly
no test coverage detected