#ifndef CRC32_H_
#define CRC32_H_

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

uint32_t crc32(const unsigned char *msg, size_t sz);

#endif
