Utility for array list handling. */
| 1837 | |
| 1838 | /* Utility for array list handling. */ |
| 1839 | static void suffix_object(cJSON *prev, cJSON *item) |
| 1840 | { |
| 1841 | prev->next = item; |
| 1842 | item->prev = prev; |
| 1843 | } |
| 1844 | |
| 1845 | /* Utility for handling references. */ |
| 1846 | static cJSON *create_reference(const cJSON *item) |
no outgoing calls
no test coverage detected