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

Function cJSON_AddObjectToObject

svf/lib/Util/cJSON.cpp:2169–2179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2167}
2168
2169CJSON_PUBLIC(cJSON*) cJSON_AddObjectToObject(cJSON * const object, const char * const name)
2170{
2171 cJSON *object_item = cJSON_CreateObject();
2172 if (add_item_to_object(object, name, object_item, &global_hooks, false))
2173 {
2174 return object_item;
2175 }
2176
2177 cJSON_Delete(object_item);
2178 return NULL;
2179}
2180
2181CJSON_PUBLIC(cJSON*) cJSON_AddArrayToObject(cJSON * const object, const char * const name)
2182{

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