]> Shamusworld >> Repos - apple2/blobdiff - src/crc32.h
Conversion of V65C02 to pointers, misc. whitespace cleanups.
[apple2] / src / crc32.h
diff --git a/src/crc32.h b/src/crc32.h
new file mode 100644 (file)
index 0000000..1821847
--- /dev/null
@@ -0,0 +1,13 @@
+//
+// CRC32.H
+//
+
+#ifndef __CRC32_H__
+#define __CRC32_H__
+
+#include <stdint.h>
+
+uint32_t CRC32(uint8_t * data, uint32_t length);
+
+#endif // __CRC32_H__
+