mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 16:52:21 -04:00
13 lines
271 B
C
13 lines
271 B
C
/*-
|
|
* COPYRIGHT (C) 1986 Gary S. Brown. You may use this program, or
|
|
* code or tables extracted from it, as desired without restriction.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef _CRC32_H_
|
|
#define _CRC32_H_
|
|
|
|
uint32_t crc32(const void *buf, size_t size);
|
|
|
|
#endif /* !_CRC32_H_ */
|