1 ///////////////////////////////////////////////////////////////////////////////
3 /// \file crc64_table.c
4 /// \brief Precalculated CRC64 table with correct endianness
6 // Author: Lasse Collin
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
11 ///////////////////////////////////////////////////////////////////////////////
15 #ifdef WORDS_BIGENDIAN
16 # include "crc64_table_be.h"
18 # include "crc64_table_le.h"