We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello
What would be the decode program for
huf_read_writer_t *file_in; huf_fdopen(&file_in, 0) // Read from standard input.
void *buf = NULL; huf_read_writer_t *mem_out; huf_memopen(&mem_out, &buf, HUF_1MIB_BUFFER);
huf_config_t config = { .reader = file_in, .writer = mem_out, .length = length, .blocksize = HUF_64KIB_BUFFER, .reader_buffer_size = HUF_128KIB_BUFFER, .writer_buffer_size = HUF_128KIB_BUFFER, };
??
I'm having problem finding the encoded data.
The text was updated successfully, but these errors were encountered:
@Mitchbux, I apologize for not replying fast. I recommend seeing the example in the C-test encode_test.c
encode_test.c
Sorry, something went wrong.
No branches or pull requests
Hello
What would be the decode program for
huf_read_writer_t *file_in;
huf_fdopen(&file_in, 0) // Read from standard input.
void *buf = NULL;
huf_read_writer_t *mem_out;
huf_memopen(&mem_out, &buf, HUF_1MIB_BUFFER);
huf_config_t config = {
.reader = file_in,
.writer = mem_out,
.length = length,
.blocksize = HUF_64KIB_BUFFER,
.reader_buffer_size = HUF_128KIB_BUFFER,
.writer_buffer_size = HUF_128KIB_BUFFER,
};
??
I'm having problem finding the encoded data.
The text was updated successfully, but these errors were encountered: