graydon
2025-08-30 0d5b7df96a2ee186b7b085dca9cf9a33f791c430
1
2
3
4
5
6
7
8
9
10
#ifndef _CRC_CPP_H__
#define _CRC_CPP_H__
 
#include "typedefs.h"
 
class CRC {
public:
    static u32 crc32(const u8* buf, u32 size);
};
#endif // !_CRC_CPP_H__