Add item to array/object. */
| 1872 | |
| 1873 | /* Add item to array/object. */ |
| 1874 | CJSON_PUBLIC(void) cJSON_AddItemToArray(cJSON *array, cJSON *item) |
| 1875 | { |
| 1876 | add_item_to_array(array, item); |
| 1877 | } |
| 1878 | |
| 1879 | #if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))) |
| 1880 | #pragma GCC diagnostic push |
no test coverage detected