mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
10 lines
172 B
C++
10 lines
172 B
C++
#pragma once
|
|
// #include "containers.hpp"
|
|
|
|
#pragma region Hashing
|
|
|
|
u32 crc32( void const* data, sw len );
|
|
u64 crc64( void const* data, sw len );
|
|
|
|
#pragma endregion Hashing
|