mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-21 14:33:29 +00:00
11 lines
176 B
C++
11 lines
176 B
C++
#ifndef __CCRC32_HPP__
|
|
#define __CCRC32_HPP__
|
|
#include "types.h"
|
|
|
|
class CCRC32 {
|
|
public:
|
|
static uint Calculate(const void* data, uint length);
|
|
};
|
|
|
|
#endif // __CCRC32_HPP__
|