MCPcopy Create free account
hub / github.com/Bwar/CJsonObject / suffix_object

Function suffix_object

cJSON.c:827–831  ·  view source on GitHub ↗

Utility for array list handling. */

Source from the content-addressed store, hash-verified

825
826/* Utility for array list handling. */
827static void suffix_object(cJSON *prev, cJSON *item)
828{
829 prev->next = item;
830 item->prev = prev;
831}
832/* Utility for handling references. */
833static cJSON *create_reference(cJSON *item)
834{

Callers 5

cJSON_AddItemToArrayFunction · 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