crc32c.h 331 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_CRC32C_H
  3. #define _LINUX_CRC32C_H
  4. #include <linux/types.h>
  5. extern u32 crc32c(u32 crc, const void *address, unsigned int length);
  6. extern const char *crc32c_impl(void);
  7. /* This macro exists for backwards-compatibility. */
  8. #define crc32c_le crc32c
  9. #endif /* _LINUX_CRC32C_H */