prime/include/Kyoto/CCrc32.hpp
Luke Street 234afca6c2 clang-format pass
Former-commit-id: 6a979e343f6a88e4c9b78d3917c1fabfcb211a0a
2022-09-18 02:05:46 -04:00

11 lines
174 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__