Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:04

0001 #ifndef CRC32C_H
0002 #define CRC32C_H
0003 
0004 #include <cstdint>
0005 #include <cstddef>
0006 
0007 uint32_t crc32c(uint32_t crc, const unsigned char *buf, size_t len);
0008 bool crc32c_hw_test();
0009 
0010 #endif