crc32.h 114 B

123456789
  1. #ifndef CRC32_H_
  2. #define CRC32_H_
  3. #include <stdint.h>
  4. uint32_t crc32(uint32_t r, void* buf, int size);
  5. #endif