]> git.ipfire.org Git - thirdparty/util-linux.git/blame - include/crc32c.h
include: add missing license lines
[thirdparty/util-linux.git] / include / crc32c.h
CommitLineData
faeb1b64
KZ
1/*
2 * No copyright is claimed. This code is in the public domain; do with it what
3 * you wish.
4 */
3279b4a4
KZ
5#ifndef UL_CRC32C_H
6#define UL_CRC32C_H
277e777f
JG
7
8#include <sys/types.h>
9#include <stdint.h>
10
11extern uint32_t crc32c(uint32_t crc, const void *buf, size_t size);
12
3279b4a4 13#endif /* UL_CRC32C_H */