summaryrefslogtreecommitdiff
path: root/crc32.h
diff options
context:
space:
mode:
authorzyp <zyp@localhost>2006-05-08 14:54:40 +0200
committerzyp <zyp@localhost>2006-05-08 14:54:40 +0200
commit3a5b32f44a95b989e39273527fc924ad3d32465e (patch)
treead977e8cdaf459f5a8b0c08f120a8ed604b5f561 /crc32.h
[project @ zyp-20060508125440-a3cc6ea65de180a0]
[project @ 23] Seperated from disccat to a standalone project.
Diffstat (limited to 'crc32.h')
-rw-r--r--crc32.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/crc32.h b/crc32.h
new file mode 100644
index 0000000..646ccce
--- /dev/null
+++ b/crc32.h
@@ -0,0 +1,11 @@
+#ifndef _CRC32_H_
+#define _CRC32_H_
+
+namespace CRC32 {
+ extern int* crc_table;
+ int* generate_table();
+ int reflect(int data, int bits);
+ int crc32(int crc, const char* data, int length);
+}
+
+#endif // _CRC32_H_