summaryrefslogtreecommitdiffstats
path: root/src/nvme/crc32.h
blob: 2bdc8fb71ccf280b3357d1febbd8eb6ae3d18791 (plain)
1
2
3
4
5
6
7
8
9
#ifndef crc32_H
#define crc32_H

#include <stdint.h>
#include <stddef.h>

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

#endif