aboutsummaryrefslogtreecommitdiff
path: root/advent-of-code/2022/lib/crc32.h
blob: 86587f13cac638764eb5b131e3b8c4bf2b91dda2 (plain)
1
2
3
4
5
6
7
8
9
#ifndef CRC32_H_
#define CRC32_H_

#include <stdint.h>

uint32_t crc32(uint32_t r, void* buf, int size);

#endif