summaryrefslogtreecommitdiff
path: root/src/include/crc32c.h
blob: e3cf8ff27046a94b79ea11021cf47ccd7a0b876b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef CEPH_CRC32C_H
#define CEPH_CRC32C_H

#ifdef __cplusplus
extern "C" {
#endif

uint32_t ceph_crc32c_le(uint32_t crc, unsigned char const *data, unsigned length);

#ifdef __cplusplus
}
#endif

#endif