Utility for array list handling. */
| 1937 | |
| 1938 | /* Utility for array list handling. */ |
| 1939 | static void suffix_object(cJSON *prev, cJSON *item) |
| 1940 | { |
| 1941 | prev->next = item; |
| 1942 | item->prev = prev; |
| 1943 | } |
| 1944 | |
| 1945 | /* Utility for handling references. */ |
| 1946 | static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks) |
no outgoing calls
no test coverage detected
searching dependent graphs…