pub unsafe extern "C" fn aws_byte_buf_reserve_relative(
buffer: *mut aws_byte_buf,
additional_length: usize
) -> c_int
Expand description
Convenience function that attempts to increase the capacity of a buffer relative to the current length.
aws_byte_buf_reserve_relative(buf, x) ~~ aws_byte_buf_reserve(buf, buf->len + x)