prime/include/Kyoto/CCrc32.hpp
Phillip Stephens 18d6a7ebbd Link CCrc32.cpp
Former-commit-id: a404575f97b5d6b6aaf1e844a35ba0d5d9ff7c53
2022-07-30 05:33:31 -07:00

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__