9 lines
129 B
C
9 lines
129 B
C
#ifndef _CRC32_H
|
|
#define _CRC32_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
uint32_t crc32(const void *buf, size_t len);
|
|
|
|
#endif
|