summaryrefslogtreecommitdiff
path: root/firmware/include/crc32-rkw.h
diff options
context:
space:
mode:
authorMarcin Bukat <marcin.bukat@gmail.com>2012-03-02 16:29:42 +0100
committerMarcin Bukat <marcin.bukat@gmail.com>2012-03-04 00:34:26 +0100
commit2f8b44aae2827a7280dc0a8e5b46a9f33e5eea60 (patch)
treee14606096fa23091db5568d5312e2bda1ba176f3 /firmware/include/crc32-rkw.h
parentf35e300304388c30fdeb6493ec5e5e5bd52e3aab (diff)
downloadrockbox-2f8b44aae2827a7280dc0a8e5b46a9f33e5eea60.tar.gz
rockbox-2f8b44aae2827a7280dc0a8e5b46a9f33e5eea60.zip
Add RKW firmware file format loader
Change-Id: I5283fdcdb8d263fd9375a6d29396f82650aeb686
Diffstat (limited to 'firmware/include/crc32-rkw.h')
-rw-r--r--firmware/include/crc32-rkw.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/firmware/include/crc32-rkw.h b/firmware/include/crc32-rkw.h
new file mode 100644
index 0000000000..b33069e398
--- /dev/null
+++ b/firmware/include/crc32-rkw.h
@@ -0,0 +1,27 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2012 Marcin Bukat
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20#include <stdint.h>
21
22#ifndef _CRC32_RKW_H
23#define _CRC32_RKW_H
24
25uint32_t crc32_rkw (const uint8_t *src, uint32_t length);
26
27#endif