#ifndef _CRC32_H
#define _CRC32_H

#include <stddef.h>
#include <stdint.h>

uint32_t crc32(const void *buf, size_t len);

#endif