// crc.h            see license.txt for copyright and terms of use
// simple crc function

#ifndef __CRC_H
#define __CRC_H

unsigned long crc32(unsigned char const *data, int length);

#endif // __CRC_H

