projects
/
fjl
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix a bug in the fast Huffman decoder.
[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
}