1 ///////////////////////////////////////////////////////////////////////////////
3 /// \file crc64_tablegen.c
4 /// \brief Generates CRC64 crc64_table.c
6 /// Compiling: gcc -std=c99 -o crc64_tablegen crc64_tablegen.c crc64_init.c
7 /// Add -DWORDS_BIGENDIAN to generate big endian table.
9 // This code has been put into the public domain.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 ///////////////////////////////////////////////////////////////////////////////
17 #include <sys/types.h>
22 extern void lzma_crc64_init(void);
24 extern uint64_t lzma_crc64_table[4][256];
32 printf("/* This file has been automatically generated by "
33 "crc64_tablegen.c. */\n\n"
34 "#include <inttypes.h>\n\n"
35 "const uint64_t lzma_crc64_table[4][256] = {\n\t{");
37 for (size_t s = 0; s < 4; ++s) {
38 for (size_t b = 0; b < 256; ++b) {
42 printf("UINT64_C(0x%016" PRIX64 ")",
43 lzma_crc64_table[s][b]);
50 printf("\n\t}\n};\n");