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