MCPcopy Create free account
hub / github.com/Tencent/Hardcoder / suffix_object

Function suffix_object

libapp2sys/src/main/cpp/cjson/cJSON.c:1824–1828  ·  view source on GitHub ↗

Utility for array list handling. */

Source from the content-addressed store, hash-verified

1822
1823/* Utility for array list handling. */
1824static void suffix_object(cJSON *prev, cJSON *item)
1825{
1826 prev->next = item;
1827 item->prev = prev;
1828}
1829
1830/* Utility for handling references. */
1831static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks)

Callers 5

add_item_to_arrayFunction · 0.85
cJSON_CreateIntArrayFunction · 0.85
cJSON_CreateFloatArrayFunction · 0.85
cJSON_CreateDoubleArrayFunction · 0.85
cJSON_CreateStringArrayFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected