blob: 9c1f742c6229a272bf4d92dd0ca1f1d7d088b9ef [file] [log] [blame]
/*
* 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__ */