MCPcopy Create free account
hub / github.com/RsyncProject/rsync / write_table

Function write_table

zlib/crc32.c:167–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

165
166#ifdef MAKECRCH
167local void write_table(FILE *out, const z_crc_t FAR *table)
168{
169 int n;
170
171 for (n = 0; n < 256; n++)
172 fprintf(out, "%s0x%08lxUL%s", n % 5 ? "" : " ",
173 (unsigned long)(table[n]),
174 n == 255 ? "\n" : (n % 5 == 4 ? ",\n" : ", "));
175}
176#endif /* MAKECRCH */
177
178#else /* !DYNAMIC_CRC_TABLE */

Callers 1

make_crc_tableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected