resetting manifest requested domain to floor
[platform/upstream/gptfdisk.git] / crc32.h
1 /*\r
2  * efone - Distributed internet phone system.\r
3  *\r
4  * (c) 1999,2000 Krzysztof Dabrowski\r
5  * (c) 1999,2000 ElysiuM deeZine\r
6  *\r
7  * This program is free software; you can redistribute it and/or\r
8  * modify it under the terms of the GNU General Public License\r
9  * as published by the Free Software Foundation; either version\r
10  * 2 of the License, or (at your option) any later version.\r
11  *\r
12  */\r
13 \r
14 /* based on implementation by Finn Yannick Jacobs. */\r
15 \r
16 #include <stdint.h>\r
17 \r
18 void chksum_crc32gentab ();\r
19 uint32_t chksum_crc32 (unsigned char *block, unsigned int length);\r
20 extern unsigned int crc_tab[256];\r