MCPcopy Create free account
hub / github.com/SVF-tools/SVF / cJSON_CreateObject

Function cJSON_CreateObject

svf/lib/Util/cJSON.cpp:2543–2552  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2541}
2542
2543CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void)
2544{
2545 cJSON *item = cJSON_New_Item(&global_hooks);
2546 if (item)
2547 {
2548 item->type = cJSON_Object;
2549 }
2550
2551 return item;
2552}
2553
2554/* Create Arrays: */
2555CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count)

Callers 3

cJSON_AddObjectToObjectFunction · 0.85
getBugDescriptionMethod · 0.85
dumpToJsonFileMethod · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected