Add item to array/object. */
| 1880 | |
| 1881 | /* Add item to array/object. */ |
| 1882 | CJSON_PUBLIC(void) cJSON_AddItemToArray(cJSON *array, cJSON *item) |
| 1883 | { |
| 1884 | add_item_to_array(array, item); |
| 1885 | } |
| 1886 | |
| 1887 | #if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))) |
| 1888 | #pragma GCC diagnostic push |
no test coverage detected