]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/check/crc32_table.c
Remove lzma_init() and other init functions from liblzma API.
[icculus/xz.git] / src / liblzma / check / crc32_table.c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       crc32_table.c
4 /// \brief      Precalculated CRC32 table with correct endianness
5 //
6 //  This code has been put into the public domain.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 //
12 ///////////////////////////////////////////////////////////////////////////////
13
14 #include "common.h"
15
16 #ifdef WORDS_BIGENDIAN
17 #       include "crc32_table_be.h"
18 #else
19 #       include "crc32_table_le.h"
20 #endif