crc32.h 145 B

12345678
  1. #ifndef CRC32_H
  2. #define CRC32_H
  3. #include <cyg/crc/crc.h>
  4. #define crc32(val, s, len) cyg_crc32_accumulate(val, (unsigned char *)s, len)
  5. #endif