Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:17

0001 #ifndef CRC32_H
0002 #define CRC32_H
0003 
0004 #include <zlib.h>
0005 #include <cyg/crc/crc.h>
0006 
0007 #undef crc32
0008 #define crc32(val, s, len) cyg_crc32_accumulate(val, (unsigned char *)s, len)
0009 
0010 #endif