Utility for array list handling. */
| 1822 | |
| 1823 | /* Utility for array list handling. */ |
| 1824 | static void suffix_object(cJSON *prev, cJSON *item) |
| 1825 | { |
| 1826 | prev->next = item; |
| 1827 | item->prev = prev; |
| 1828 | } |
| 1829 | |
| 1830 | /* Utility for handling references. */ |
| 1831 | static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks) |
no outgoing calls
no test coverage detected