pub unsafe extern "C" fn aws_huffman_decode(
decoder: *mut aws_huffman_decoder,
to_decode: *mut aws_byte_cursor,
output: *mut aws_byte_buf
) -> c_int
Expand description
Decodes a byte buffer into the provided symbol array.
\param[in] decoder The decoder object to use \param[in] to_decode The encoded byte buffer to read from \param[in] output The buffer to write decoded symbols to. If decoder is set to allow growth, capacity will be increased when necessary.
\return AWS_OP_SUCCESS if encoding is successful, AWS_OP_ERR otherwise