Utility for array list handling. */
| 1997 | |
| 1998 | /* Utility for array list handling. */ |
| 1999 | static void suffix_object(cJSON *prev, cJSON *item) |
| 2000 | { |
| 2001 | prev->next = item; |
| 2002 | item->prev = prev; |
| 2003 | } |
| 2004 | |
| 2005 | /* Utility for handling references. */ |
| 2006 | static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks) |
no outgoing calls
no test coverage detected