Source: freebsd/sys/libkern/crc32.c This code is an unmodified fragment from the source. Will fixup comments / naming in next commit Signed-off-by: Karel Zak <kzak@redhat.com>
9 lines
188 B
C
9 lines
188 B
C
#ifndef UL_NG_CRC32C_H
|
|
#define UL_NG_CRC32C_H
|
|
|
|
#include <sys/types.h>
|
|
#include <stdint.h>
|
|
|
|
extern uint32_t crc32c(uint32_t crc, const void *buf, size_t size);
|
|
|
|
#endif /* UL_NG_CRC32C_H */
|