blob: f5271f3756b4ca380ef81bf039d9afab5bb72190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* 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);
static inline uint32_t crc32(uint32_t val, const void *ss, int len)
{
return mtd_crc32(val, ss, len);
}
#endif /* __CRC32_H__ */
|