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

Function cJSON_AddArrayToObject

svf/lib/Util/cJSON.cpp:2181–2191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2179}
2180
2181CJSON_PUBLIC(cJSON*) cJSON_AddArrayToObject(cJSON * const object, const char * const name)
2182{
2183 cJSON *array = cJSON_CreateArray();
2184 if (add_item_to_object(object, name, array, &global_hooks, false))
2185 {
2186 return array;
2187 }
2188
2189 cJSON_Delete(array);
2190 return NULL;
2191}
2192
2193CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item)
2194{

Callers

nothing calls this directly

Calls 3

cJSON_CreateArrayFunction · 0.85
add_item_to_objectFunction · 0.85
cJSON_DeleteFunction · 0.85

Tested by

no test coverage detected