]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/check/crc64_table.c
Imported to git.
[icculus/xz.git] / src / liblzma / check / crc64_table.c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       crc64_table.c
4 /// \brief      Precalculated CRC64 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 #ifdef HAVE_CONFIG_H
15 #       include <config.h>
16 #endif
17
18 #ifdef WORDS_BIGENDIAN
19 #       include "crc64_table_be.h"
20 #else
21 #       include "crc64_table_le.h"
22 #endif