summaryrefslogtreecommitdiff
path: root/firmware/include/crc32-mi4.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/crc32-mi4.h')
-rw-r--r--firmware/include/crc32-mi4.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/firmware/include/crc32-mi4.h b/firmware/include/crc32-mi4.h
new file mode 100644
index 0000000000..e7f3229d5b
--- /dev/null
+++ b/firmware/include/crc32-mi4.h
@@ -0,0 +1,25 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id: crc32.h 10464 2006-08-05 20:19:10Z miipekk $
9 *
10 * Copyright (C) 2007 Barry Wardell
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef _CRC32_MI4_H
20#define _CRC32_MI4_H
21
22unsigned int chksum_crc32 (unsigned char *block, unsigned int length);
23void chksum_crc32gentab (void);
24
25#endif