blob: d2964e841b139172c1efaed9fd1a1eaa34e8fffe (
plain)
1
2
3
4
5
6
|
#ifndef CRC_H
#define CRC_H
/* This computes a 32 bit CRC of the data in the buffer, and returns the
CRC. The polynomial used is 0xedb88320. */
unsigned int crc32(const unsigned char *buf, unsigned int len, int salt);
#endif /* CRC_H */
|