]> CyberLeo.Net >> Repos - CDN/.attic/crc32sum.git/blob - crc32.h
Stub manpage
[CDN/.attic/crc32sum.git] / crc32.h
1 /*
2  * efone - Distributed internet phone system.
3  *
4  * (c) 1999,2000 Krzysztof Dabrowski
5  * (c) 1999,2000 ElysiuM deeZine
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version
10  * 2 of the License, or (at your option) any later version.
11  *
12  */
13
14 /* based on implementation by Finn Yannick Jacobs. */
15
16 #include <stdint.h>
17
18 void chksum_crc32_gentab ();
19 uint32_t chksum_crc32 (unsigned char *block, unsigned int length, uint32_t *chksum_crc);
20 extern uint32_t chksum_crc_tab[256];