table.c 250 B

12345678910
  1. #include "table.h"
  2. #include "tables2.inc"
  3. static struct TQuickLZMethods* qlz_tables[2][4][3] =
  4. #include "tables1.inc"
  5. ;
  6. struct TQuickLZMethods* GetLzqTable(unsigned ver, unsigned level, unsigned buf) {
  7. return qlz_tables[ver][level][buf];
  8. }