crc32/crc32.h
2012-08-04 10:03:16 -07:00

14 lines
368 B
C

/* Copyright (C) 2012 Connor Olding
*
* This program is licensed under the terms of the MIT License, and
* is distributed without any warranty. You should have received a
* copy of the license along with this program; see the file LICENSE.
*/
int crc_big_endian;
ulong crc_polynomial;
void crc_cycle(ulong *remainder, char c);
ulong crc_reflect(ulong input);