Blame view

include/linux/crc32c.h 293 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
  #ifndef _LINUX_CRC32C_H
  #define _LINUX_CRC32C_H
  
  #include <linux/types.h>
69c35efcf   Herbert Xu   libcrc32c: Move i...
6
  extern u32 crc32c(u32 crc, const void *address, unsigned int length);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7

0426c1664   Herbert Xu   libcrc32c: Add cr...
8
9
  /* This macro exists for backwards-compatibility. */
  #define crc32c_le crc32c
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
  #endif	/* _LINUX_CRC32C_H */