MLIB
Loading...
Searching...
No Matches
crc32.h
1#pragma once
2
3#if __has_include("defs.h")
4#include "defs.h"
5#endif
6
7namespace mlib
8{
9
10void crc32_update (BYTE byte, DWORD* crc);
11DWORD crc32 (const void* block, size_t sz);
12
13}
14