blob: c756e65a1b58d72660033c71a4c21013614cb9d4 [file] [log] [blame]
Coly Lifeba04f2018-08-21 21:57:11 -07001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * See lib/crc64.c for the related specification and polynomial arithmetic.
4 */
5#ifndef _LINUX_CRC64_H
6#define _LINUX_CRC64_H
7
8#include <linux/types.h>
9
10u64 __pure crc64_be(u64 crc, const void *p, size_t len);
11#endif /* _LINUX_CRC64_H */