crc32.h 216 B

1234567
  1. #ifndef _CRC32_H_
  2. #define _CRC32_H_
  3. typedef unsigned long TCRC;
  4. TCRC __ICRC32(void);
  5. #define ICRC32 (__ICRC32())
  6. unsigned long CRC32(unsigned long crc, const unsigned char *buf, unsigned long len);
  7. #endif