4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-28 04:20:22 +08:00

9 lines
145 B
C
Raw Normal View History

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