MCPcopy Create free account
hub / github.com/alibaba/CicadaPlayer / cJSON_CreateObject

Function cJSON_CreateObject

framework/utils/cJSON.c:2394–2403  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2392}
2393
2394CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void)
2395{
2396 cJSON *item = cJSON_New_Item(&global_hooks);
2397 if (item)
2398 {
2399 item->type = cJSON_Object;
2400 }
2401
2402 return item;
2403}
2404
2405/* Create Arrays: */
2406CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count)

Callers 2

CicadaJSONItemMethod · 0.85
cJSON_AddObjectToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected