mirror of
https://github.com/versity/scoutfs.git
synced 2026-04-24 15:30:29 +00:00
13 lines
276 B
C
13 lines
276 B
C
#ifndef _CRC_H_
|
|
#define _CRC_H_
|
|
|
|
#include "sparse.h"
|
|
#include "util.h"
|
|
#include "format.h"
|
|
|
|
u32 crc32c(u32 crc, const void *data, unsigned int len);
|
|
u64 crc32c_64(u32 crc, const void *data, unsigned int len);
|
|
u32 crc_block(struct scoutfs_block_header *hdr, u32 size);
|
|
|
|
#endif
|