]> git.sesse.net Git - fjl/blob - choice.c
Fix a bug where we could return too much data from the byte source. Add test.
[fjl] / choice.c
1 #include "choice.h"
2
3 unstuff_func_t* unstuff_choice = NULL;
4
5 void init_choices()
6 {
7         // TODO: Pick the SSE4.1 version if applicable.
8         unstuff_choice = unstuff_fast;
9 }