crc32_table.c revision 207753
1207753Smm///////////////////////////////////////////////////////////////////////////////
2207753Smm//
3207753Smm/// \file       crc32_table.c
4207753Smm/// \brief      Precalculated CRC32 table with correct endianness
5207753Smm//
6207753Smm//  Author:     Lasse Collin
7207753Smm//
8207753Smm//  This file has been put into the public domain.
9207753Smm//  You can do whatever you want with this file.
10207753Smm//
11207753Smm///////////////////////////////////////////////////////////////////////////////
12207753Smm
13207753Smm#include "common.h"
14207753Smm
15207753Smm#ifdef WORDS_BIGENDIAN
16207753Smm#	include "crc32_table_be.h"
17207753Smm#else
18207753Smm#	include "crc32_table_le.h"
19207753Smm#endif
20