Utility for array list handling. */
| 1830 | |
| 1831 | /* Utility for array list handling. */ |
| 1832 | static void suffix_object(cJSON *prev, cJSON *item) |
| 1833 | { |
| 1834 | prev->next = item; |
| 1835 | item->prev = prev; |
| 1836 | } |
| 1837 | |
| 1838 | /* Utility for handling references. */ |
| 1839 | static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks) |
no outgoing calls
no test coverage detected