mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-04-25 15:50:31 -05:00
8 lines
175 B
C
8 lines
175 B
C
#pragma once
|
|
|
|
uint32 crc32_calc(uint32 c, const void* data, size_t length);
|
|
|
|
inline uint32 crc32_calc(const void* data, size_t length)
|
|
{
|
|
return crc32_calc(0, data, length);
|
|
} |