Utility for array list handling. */
| 1922 | |
| 1923 | /* Utility for array list handling. */ |
| 1924 | static void suffix_object(cJSON *prev, cJSON *item) |
| 1925 | { |
| 1926 | prev->next = item; |
| 1927 | item->prev = prev; |
| 1928 | } |
| 1929 | |
| 1930 | /* Utility for handling references. */ |
| 1931 | static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks) |
no outgoing calls
no test coverage detected