aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/digest/crc32c/crc32c.h
blob: 054f65dd83e3c1fc26366f56bc5234a2b41b0be4 (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once 
 
#include <util/system/types.h>
 
// Threadsafe 
ui32 Crc32c(const void* p, size_t size) noexcept;
ui32 Crc32cExtend(ui32 init, const void* data, size_t n) noexcept;

bool HaveFastCrc32c() noexcept;