gpted/crc32.h

9 lines
121 B
C
Raw Permalink Normal View History

2015-04-14 01:11:50 +02:00
#ifndef CRC32_H
#define CRC32_H
#include <stdint.h>
uint32_t crc32(uint32_t crc, const void *buf, size_t len);
#endif