blob: 9c1f742c6229a272bf4d92dd0ca1f1d7d088b9ef (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | /*
 * This code was taken from the linux kernel. The license is GPL Version 2.
 */
#ifndef __CRC32_H__
#define __CRC32_H__
#include <stdint.h>
/* Return a 32-bit CRC of the contents of the buffer */
extern uint32_t mtd_crc32(uint32_t val, const void *ss, int len);
#endif /* __CRC32_H__ */
 |