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_crc32gentab (); 19 uint32_t chksum_crc32 (unsigned char *block, unsigned int length); 20 extern unsigned int crc_tab[256]; 21