mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 23:05:20 -04:00
13 lines
143 B
C++
13 lines
143 B
C++
#ifndef S_CRC_H
|
|
#define S_CRC_H
|
|
|
|
#include "common.h"
|
|
|
|
namespace sCrc {
|
|
|
|
u32 calcCRC32(const void *ptr, u32 size);
|
|
|
|
} // namespace sCrc
|
|
|
|
#endif
|