Utility for array list handling. */
| 825 | |
| 826 | /* Utility for array list handling. */ |
| 827 | static void suffix_object(cJSON *prev, cJSON *item) |
| 828 | { |
| 829 | prev->next = item; |
| 830 | item->prev = prev; |
| 831 | } |
| 832 | /* Utility for handling references. */ |
| 833 | static cJSON *create_reference(cJSON *item) |
| 834 | { |
no outgoing calls
no test coverage detected