Files
ANSCORE/core/anslicensing/crc32.h

11 lines
162 B
C
Raw Normal View History

2026-03-28 16:54:11 +11:00
#pragma once
class Crc32
{
public:
static unsigned int Compute(const unsigned char * buffer, int count);
private:
static const unsigned int crcTable[256];
};