pub unsafe extern "C" fn aws_json_value_add_array_element(
array: *mut aws_json_value,
value: *const aws_json_value
) -> c_int
Expand description
Adds a aws_json_value to the given array aws_json_value.
Note that the aws_json_value will be destroyed when the aws_json_value array is destroyed by calling “aws_json_destroy()” @param array The array aws_json_value you want to add an aws_json_value to. @param value The aws_json_value you want to add. @return AWS_OP_SUCCESS if adding the aws_json_value was successful. Will return AWS_OP_ERR if the array passed is invalid.