| 593 | } |
| 594 | |
| 595 | static void sort_object(cJSON * const object, const cJSON_bool case_sensitive) |
| 596 | { |
| 597 | if (object == NULL) |
| 598 | { |
| 599 | return; |
| 600 | } |
| 601 | object->child = sort_list(object->child, case_sensitive); |
| 602 | } |
| 603 | |
| 604 | static cJSON_bool compare_json(cJSON *a, cJSON *b, const cJSON_bool case_sensitive) |
| 605 | { |
no test coverage detected
searching dependent graphs…