MCPcopy Create free account
hub / github.com/Netis/cloud-probe / sort_object

Function sort_object

cpworker/src/cJSON/cJSON_Utils.c:605–612  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

603}
604
605static void sort_object(cJSON *const object, const cJSON_bool case_sensitive)
606{
607 if (object == NULL)
608 {
609 return;
610 }
611 object->child = sort_list(object->child, case_sensitive);
612}
613
614static cJSON_bool compare_json(cJSON *a, cJSON *b, const cJSON_bool case_sensitive)
615{

Callers 5

compare_jsonFunction · 0.85
create_patchesFunction · 0.85
cJSONUtils_SortObjectFunction · 0.85
generate_merge_patchFunction · 0.85

Calls 1

sort_listFunction · 0.85

Tested by

no test coverage detected