2005-04-16 16:20:36 -06:00
|
|
|
#ifndef _LINUX_CRC32C_H
|
|
|
|
#define _LINUX_CRC32C_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
2008-11-07 00:11:47 -07:00
|
|
|
extern u32 crc32c(u32 crc, const void *address, unsigned int length);
|
2005-04-16 16:20:36 -06:00
|
|
|
|
2008-11-10 21:20:06 -07:00
|
|
|
/* This macro exists for backwards-compatibility. */
|
|
|
|
#define crc32c_le crc32c
|
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
#endif /* _LINUX_CRC32C_H */
|