summaryrefslogtreecommitdiffstats
path: root/inc/dnbd3/shared/crc32.h
blob: 00b8bddec65546de9a490f7f124a231541a22385 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef _CRC32_H_
#define _CRC32_H_

#include <stdint.h>

uint32_t crc32(uint32_t crc, const uint8_t *buf, size_t len);

#endif