crc32c.h 254 B

123456789101112
  1. #ifndef _LINUX_CRC32C_H
  2. #define _LINUX_CRC32C_H
  3. #include <linux/types.h>
  4. extern u32 crc32c(u32 crc, const void *address, unsigned int length);
  5. /* This macro exists for backwards-compatibility. */
  6. #define crc32c_le crc32c
  7. #endif /* _LINUX_CRC32C_H */