1 #ifndef __CRC32_H
2 #define __CRC32_H
3 
4 unsigned long crc32_buf(const void *buf, long len);
5 unsigned long crc32_file(const char *filename);
6 
7 #endif
8