MCPcopy Index your code
hub / github.com/antirez/botlib / suffix_object

Function suffix_object

cJSON.c:1924–1928  ·  view source on GitHub ↗

Utility for array list handling. */

Source from the content-addressed store, hash-verified

1922
1923/* Utility for array list handling. */
1924static void suffix_object(cJSON *prev, cJSON *item)
1925{
1926 prev->next = item;
1927 item->prev = prev;
1928}
1929
1930/* Utility for handling references. */
1931static 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