blob: d6c0c395e28b4555db1e3836b02183363ffe41e6 (
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 */
|