Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _LINUX_CRC32C_H
0003 #define _LINUX_CRC32C_H
0004 
0005 #include <linux/types.h>
0006 
0007 extern u32 crc32c(u32 crc, const void *address, unsigned int length);
0008 extern const char *crc32c_impl(void);
0009 
0010 /* This macro exists for backwards-compatibility. */
0011 #define crc32c_le crc32c
0012 
0013 #endif  /* _LINUX_CRC32C_H */