mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-10 23:13:30 +00:00
11 lines
153 B
C++
11 lines
153 B
C++
#ifndef _CCRC32
|
|
#define _CCRC32
|
|
#include "types.h"
|
|
|
|
class CCRC32 {
|
|
public:
|
|
static uint Calculate(const void* data, uint length);
|
|
};
|
|
|
|
#endif // _CCRC32
|