分支自 DSP/ADSP21569/DSP-21569

wanglei
2024-04-07 cc0cf0e2c92b0fc690a75979fe49d1729b5798b7
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__