pub unsafe extern "C" fn aws_byte_buf_append_byte_dynamic(
buffer: *mut aws_byte_buf,
value: u8
) -> c_int
Expand description
Copies a single byte into to
. If to
is too small, the buffer will be grown appropriately and
the old contents copied over, before the byte is appended.
If the grow fails (overflow or OOM), then an error will be returned.