mirror of
https://github.com/zeldaret/ss
synced 2026-05-31 09:21:42 -04:00
13 lines
141 B
C++
13 lines
141 B
C++
#ifndef S_CRC_H
|
|
#define S_CRC_H
|
|
|
|
#include <common.h>
|
|
|
|
namespace sCrc {
|
|
|
|
u32 calcCRC(const void *ptr, u32 size);
|
|
|
|
} // namespace sCrc
|
|
|
|
#endif
|