Finished bitwriter implementation

This commit is contained in:
Dan Hirsch 2012-07-27 15:28:55 -07:00
parent 1b9314e73e
commit 68e78fd4b8
2 changed files with 15 additions and 2 deletions

View file

@ -470,7 +470,7 @@ void h_bit_writer_put(HBitWriter* w, unsigned long long data, size_t nbits);
* Must not free [w] until you're done with the result.
* [len] is in bytes.
*/
uint8_t *h_bit_writer_get_buffer(HBitWriter* w, size_t *len);
const uint8_t *h_bit_writer_get_buffer(HBitWriter* w, size_t *len);
/**
* TODO: Document me