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

Function cJSON_CreateArray

cJSON.c:2583–2592  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2581}
2582
2583CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void)
2584{
2585 cJSON *item = cJSON_New_Item(&global_hooks);
2586 if(item)
2587 {
2588 item->type=cJSON_Array;
2589 }
2590
2591 return item;
2592}
2593
2594CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void)
2595{

Calls 1

cJSON_New_ItemFunction · 0.85

Used in the wild real call sites across dependent graphs

searching dependent graphs…