MCPcopy Index your code
hub / github.com/DaveGamble/cJSON / suffix_object

Function suffix_object

cJSON.c:1984–1988  ·  view source on GitHub ↗

Utility for array list handling. */

Source from the content-addressed store, hash-verified

1982
1983/* Utility for array list handling. */
1984static void suffix_object(cJSON *prev, cJSON *item)
1985{
1986 prev->next = item;
1987 item->prev = prev;
1988}
1989
1990/* Utility for handling references. */
1991static 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…