blob: 782a484c159f282901cd03caea4d82feb123822c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include "table.h"
#include "tables2.inc"
static struct TQuickLZMethods* qlz_tables[2][4][3] =
#include "tables1.inc"
;
struct TQuickLZMethods* GetLzqTable(unsigned ver, unsigned level, unsigned buf) {
return qlz_tables[ver][level][buf];
}
|