crc.h 251 B

123456789101112131415
  1. /*
  2. * Used for crc32.c
  3. */
  4. #ifndef CRC_H
  5. #define CRC_H
  6. #include <stdint.h>
  7. #include <sys/types.h>
  8. #include "zconf.h"
  9. uint32_t crc32 (uint32_t, const unsigned char *, uint);
  10. uint32_t crc32_no_comp (uint32_t crc, const Bytef *buf, uInt len);
  11. #endif