Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/lib/crc/s390/crc32-vx.h
26285 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
3
#ifndef _CRC32_VX_S390_H
4
#define _CRC32_VX_S390_H
5
6
#include <linux/types.h>
7
8
u32 crc32_be_vgfm_16(u32 crc, unsigned char const *buf, size_t size);
9
u32 crc32_le_vgfm_16(u32 crc, unsigned char const *buf, size_t size);
10
u32 crc32c_le_vgfm_16(u32 crc, unsigned char const *buf, size_t size);
11
12
#endif /* _CRC32_VX_S390_H */
13
14