2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 01:47:42 +00:00
Files
metaforce/Runtime/CCRC32.hpp

13 lines
173 B
C++
Raw Normal View History

2018-10-06 17:42:33 -10:00
#pragma once
2015-08-17 12:26:47 -07:00
#include <cstdint>
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 19:30:43 -10:00
class CCRC32 {
2015-08-17 12:26:47 -07:00
public:
2018-12-07 19:30:43 -10:00
static uint32_t Calculate(const void* data, uint32_t length);
2015-08-17 12:26:47 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce