mirror of
https://github.com/ceph/ceph
synced 2025-01-07 11:41:48 +00:00
15 lines
200 B
C
15 lines
200 B
C
#ifndef __CEPH_CRC32C
|
|
#define __CEPH_CRC32C
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint32_t crc32c_le(uint32_t crc, unsigned char const *data, unsigned length);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|