Add item to array/object. */
| 1984 | |
| 1985 | /* Add item to array/object. */ |
| 1986 | CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item) |
| 1987 | { |
| 1988 | return add_item_to_array(array, item); |
| 1989 | } |
| 1990 | |
| 1991 | #if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))) |
| 1992 | #pragma GCC diagnostic push |
no test coverage detected