blob: 1c5083941fc59a6bc0d2f4ffbdf11e088771c6e5 (
plain)
1
2
3
4
5
6
7
8
9
|
#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 */
|