mgba/src/util/crc32.h

14 lines
267 B
C
Raw Normal View History

2014-07-07 08:54:40 +00:00
#ifndef CRC32_H
#define CRC32_H
#include <stdint.h>
#include <string.h>
2014-07-20 22:11:22 +00:00
struct VFile;
2014-07-07 08:54:40 +00:00
uint32_t crc32(const void* buf, size_t size);
uint32_t updateCrc32(uint32_t crc, const void* buf, size_t size);
2014-07-20 22:11:22 +00:00
uint32_t fileCrc32(struct VFile* file, size_t endOffset);
2014-07-07 08:54:40 +00:00
#endif