Utility for array list handling. */
| 1944 | |
| 1945 | /* Utility for array list handling. */ |
| 1946 | static void suffix_object(cJSON *prev, cJSON *item) |
| 1947 | { |
| 1948 | prev->next = item; |
| 1949 | item->prev = prev; |
| 1950 | } |
| 1951 | |
| 1952 | /* Utility for handling references. */ |
| 1953 | static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks) |
no outgoing calls
no test coverage detected