mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 23:21:41 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
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
|