分支自 DSP/ADSP21569/DSP-21569

wanglei
2024-03-27 ec21e6d7b11751cba2501c690d0e16fcb0581d3c
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__