-
Notifications
You must be signed in to change notification settings - Fork 55
MTY_CRC32
chrisd1100 edited this page Aug 25, 2022
·
1 revision
CRC32 checksum.
This CRC32 implementation uses the reverse polynomial 0xEDB88320
.
uint32_t MTY_CRC32(
uint32_t crc,
const void * buf,
size_t size
);
crc
(uint32_t
)
CRC32 seed value.
buf
(const void *
)
Input buffer.
size
(size_t
)
Size in bytes of buf
.
uint32_t
CRC32 checksum.