Utility for array list handling. */
| 1982 | |
| 1983 | /* Utility for array list handling. */ |
| 1984 | static void suffix_object(cJSON *prev, cJSON *item) |
| 1985 | { |
| 1986 | prev->next = item; |
| 1987 | item->prev = prev; |
| 1988 | } |
| 1989 | |
| 1990 | /* Utility for handling references. */ |
| 1991 | static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks) |
no outgoing calls
no test coverage detected
searching dependent graphs…