MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / cJSON_AddItemToArray

Function cJSON_AddItemToArray

external/cJSON/cJSON.c:2061–2064  ·  view source on GitHub ↗

Add item to array/object. */

Source from the content-addressed store, hash-verified

2059
2060/* Add item to array/object. */
2061CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item)
2062{
2063 return add_item_to_array(array, item);
2064}
2065
2066#if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5))))
2067 #pragma GCC diagnostic push

Callers 2

make_cjsonFunction · 0.85
cJSON.hFile · 0.85

Calls 1

add_item_to_arrayFunction · 0.85

Tested by

no test coverage detected