]> Shamusworld >> Repos - apple2/blob - src/crc32.h
Added initial emulator configuration window, cleanup of settings code.
[apple2] / src / crc32.h
1 //
2 // CRC32.H
3 //
4
5 #ifndef __CRC32_H__
6 #define __CRC32_H__
7
8 #include <stdint.h>
9
10 uint32_t CRC32(const uint8_t * data, uint32_t length);
11
12 #endif  // __CRC32_H__
13