| 1339 | } |
| 1340 | |
| 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 |
nothing calls this directly
no test coverage detected