MCPcopy Index your code
hub / github.com/DaveGamble/cJSON / cJSON_AddItemToArray

Function cJSON_AddItemToArray

cJSON.c:2046–2049  ·  view source on GitHub ↗

Add item to array/object. */

Source from the content-addressed store, hash-verified

2044
2045/* Add item to array/object. */
2046CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item)
2047{
2048 return add_item_to_array(array, item);
2049}
2050
2051#if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5))))
2052 #pragma GCC diagnostic push

Calls 1

add_item_to_arrayFunction · 0.85

Used in the wild real call sites across dependent graphs

searching dependent graphs…