1213136Spjd/*-
2213136Spjd *  COPYRIGHT (C) 1986 Gary S. Brown.  You may use this program, or
3213136Spjd *  code or tables extracted from it, as desired without restriction.
4213136Spjd *
5213136Spjd * $FreeBSD: stable/11/stand/libsa/crc32.h 329134 2018-02-11 20:00:26Z kevans $
6213136Spjd */
7213136Spjd
8213136Spjd#ifndef _CRC32_H_
9213136Spjd#define	_CRC32_H_
10213136Spjd
11213136Spjduint32_t crc32(const void *buf, size_t size);
12213136Spjd
13213136Spjd#endif	/* !_CRC32_H_ */
14