mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-21 12:33:32 +08:00
3b11805964
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1919 bbd45198-f89e-11dd-88c7-29a3b14d5316
9 lines
145 B
C
9 lines
145 B
C
#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
|