summaryrefslogtreecommitdiff
path: root/hash/crc32.h
diff options
context:
space:
mode:
Diffstat (limited to 'hash/crc32.h')
-rw-r--r--hash/crc32.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/hash/crc32.h b/hash/crc32.h
deleted file mode 100644
index 646ccce..0000000
--- a/hash/crc32.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#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_