crc32/crc32.h

13 lines
395 B
C
Raw Normal View History

2012-08-04 05:23:29 -07:00
/* 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.
*/
2012-04-13 02:43:39 -07:00
2012-08-04 10:03:16 -07:00
ulong crc_polynomial;
2012-04-13 02:43:39 -07:00
2012-08-05 19:24:31 -07:00
void crc_be_cycle(ulong *remainder, char c);
void crc_le_cycle(ulong *remainder, char c);
ulong crc_reflect(ulong input);