prime/include/Kyoto/CCrc32.hpp

11 lines
153 B
C++
Raw Normal View History

#ifndef _CCRC32
#define _CCRC32
2022-07-30 12:33:31 +00:00
#include "types.h"
class CCRC32 {
public:
2022-09-18 06:05:46 +00:00
static uint Calculate(const void* data, uint length);
2022-07-30 12:33:31 +00:00
};
#endif // _CCRC32