crc32.h 162 B

12345678
  1. #ifndef _CRC32_H
  2. #define _CRC32_H
  3. void crc32(const void *data, uint32_t n_bytes, uint32_t* crc);
  4. uint32_t crc32_buf(const void *buf, uint32_t n_bytes);
  5. #endif