]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/check/crc32_tablegen.c
Introduced compatibility with systems that have pre-C99
[icculus/xz.git] / src / liblzma / check / crc32_tablegen.c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       crc32_tablegen.c
4 /// \brief      Generates CRC32 crc32_table.c
5 ///
6 /// Compiling: gcc -std=c99 -o crc32_tablegen crc32_tablegen.c crc32_init.c
7 /// Add -DWORDS_BIGENDIAN to generate big endian table.
8 //
9 //  This code has been put into the public domain.
10 //
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.
14 //
15 ///////////////////////////////////////////////////////////////////////////////
16
17 #include <sys/types.h>
18 #include <inttypes.h>
19 #include <stdio.h>
20
21
22 extern void lzma_crc32_init(void);
23
24 extern uint32_t lzma_crc32_table[8][256];
25
26
27 int
28 main()
29 {
30         lzma_crc32_init();
31
32         printf("/* This file has been automatically generated by "
33                         "crc32_tablegen.c. */\n\n"
34                         "const uint32_t lzma_crc32_table[8][256] = {\n\t{");
35
36         for (size_t s = 0; s < 8; ++s) {
37                 for (size_t b = 0; b < 256; ++b) {
38                         if ((b % 4) == 0)
39                                 printf("\n\t\t");
40
41                         printf("0x%08" PRIX32, lzma_crc32_table[s][b]);
42
43                         if (b != 255)
44                                 printf(", ");
45                 }
46
47                 if (s == 7)
48                         printf("\n\t}\n};\n");
49                 else
50                         printf("\n\t}, {");
51         }
52
53         return 0;
54 }