RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / linux / crc32c.h
blob508f512e5a2fcebbaf1f243e7a4fd42a7ace96db
1 #ifndef _LINUX_CRC32C_H
2 #define _LINUX_CRC32C_H
4 #include <linux/types.h>
6 extern u32 crc32c_le(u32 crc, unsigned char const *address, size_t length);
7 extern u32 crc32c_be(u32 crc, unsigned char const *address, size_t length);
9 #define crc32c(seed, data, length) crc32c_le(seed, (unsigned char const *)data, length)
11 #endif /* _LINUX_CRC32C_H */