chenlh
2026-01-20 fe4d335b54ede7a47fd4bcf5c228fb427cbcc8c9
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__