MCPcopy Index your code
hub / github.com/antirez/botlib / cJSON_CreateObject

Function cJSON_CreateObject

cJSON.c:2524–2533  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2522}
2523
2524CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void)
2525{
2526 cJSON *item = cJSON_New_Item(&global_hooks);
2527 if (item)
2528 {
2529 item->type = cJSON_Object;
2530 }
2531
2532 return item;
2533}
2534
2535/* Create Arrays: */
2536CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count)

Callers 1

cJSON_AddObjectToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected