CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
crc32c.h
Go to the documentation of this file.
1 #ifndef CRC32C_H
2 #define CRC32C_H
3 
4 #include <stdint.h>
5 #include <stddef.h>
6 
7 uint32_t crc32c(uint32_t crc, const unsigned char *buf, size_t len);
8 bool crc32c_hw_test();
9 
10 #endif
bool crc32c_hw_test()
Definition: crc32c.cc:354
uint32_t crc32c(uint32_t crc, const unsigned char *buf, size_t len)
Definition: crc32c.cc:340