mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-04 05:55:54 +00:00
11 lines
174 B
C++
11 lines
174 B
C++
#ifndef __CCRC32_HPP__
|
|
#define __CCRC32_HPP__
|
|
#include "types.h"
|
|
|
|
class CCRC32 {
|
|
public:
|
|
static u32 Calculate(const void* data, u32 length);
|
|
};
|
|
|
|
#endif // __CCRC32_HPP__
|