gpted/crc32.h

9 lines
121 B
C

#ifndef CRC32_H
#define CRC32_H
#include <stdint.h>
uint32_t crc32(uint32_t crc, const void *buf, size_t len);
#endif