| 603 | } |
| 604 | |
| 605 | static 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 | |
| 614 | static cJSON_bool compare_json(cJSON *a, cJSON *b, const cJSON_bool case_sensitive) |
| 615 | { |
no test coverage detected