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

Function cJSON_AddObjectToObject

cJSON.c:2159–2169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2157}
2158
2159CJSON_PUBLIC(cJSON*) cJSON_AddObjectToObject(cJSON * const object, const char * const name)
2160{
2161 cJSON *object_item = cJSON_CreateObject();
2162 if (add_item_to_object(object, name, object_item, &global_hooks, false))
2163 {
2164 return object_item;
2165 }
2166
2167 cJSON_Delete(object_item);
2168 return NULL;
2169}
2170
2171CJSON_PUBLIC(cJSON*) cJSON_AddArrayToObject(cJSON * const object, const char * const name)
2172{

Callers

nothing calls this directly

Calls 3

cJSON_CreateObjectFunction · 0.85
add_item_to_objectFunction · 0.85
cJSON_DeleteFunction · 0.85

Tested by

no test coverage detected