blob: b1ca28bcd128cfd872324db6fa41a01907ca5a68 [file] [log] [blame]
srs5694e7b4ff92009-08-18 13:16:10 -04001/*
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
18void chksum_crc32gentab ();
19uint32_t chksum_crc32 (unsigned char *block, unsigned int length);
20extern unsigned int crc_tab[256];