robmcmullen-apple2/src/crc32.h

14 lines
159 B
C

//
// CRC32.H
//
#ifndef __CRC32_H__
#define __CRC32_H__
#include <stdint.h>
uint32_t CRC32(const uint8_t * data, uint32_t length);
#endif // __CRC32_H__