MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / suffix_object

Function suffix_object

TheForceEngine/TFE_System/cJSON.c:1933–1937  ·  view source on GitHub ↗

Utility for array list handling. */

Source from the content-addressed store, hash-verified

1931
1932/* Utility for array list handling. */
1933static void suffix_object(cJSON *prev, cJSON *item)
1934{
1935 prev->next = item;
1936 item->prev = prev;
1937}
1938
1939/* Utility for handling references. */
1940static 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