]> git.sesse.net Git - fjl/blobdiff - choice.c
Initialize a very crude framework for choosing the right functions at
[fjl] / choice.c
diff --git a/choice.c b/choice.c
new file mode 100644 (file)
index 0000000..7ddcd13
--- /dev/null
+++ b/choice.c
@@ -0,0 +1,9 @@
+#include "choice.h"
+
+unstuff_func_t* unstuff_choice = NULL;
+
+void init_choices()
+{
+       // TODO: Pick the SSE4.1 version if applicable.
+       unstuff_choice = unstuff_fast;
+}