Files
ss/include/s/s_Crc.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

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