aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/digest/crc32c/crc32c.h
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-05-06 16:25:32 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-05-06 16:25:32 +0300
commitcd04681a15e2a0f5a6c26802a5e27ab822ef5fb7 (patch)
tree308286ac567a4172e2bb516fa551898f349986db /library/cpp/digest/crc32c/crc32c.h
parent8db3cc37187f35d7768f073b5880e559b6767bdf (diff)
downloadydb-cd04681a15e2a0f5a6c26802a5e27ab822ef5fb7.tar.gz
intermediate changes
ref:7e8696b4742c75a3ab825709512075b3710a0a6f
Diffstat (limited to 'library/cpp/digest/crc32c/crc32c.h')
-rw-r--r--library/cpp/digest/crc32c/crc32c.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/cpp/digest/crc32c/crc32c.h b/library/cpp/digest/crc32c/crc32c.h
index 17b554c8e1..e6b767c607 100644
--- a/library/cpp/digest/crc32c/crc32c.h
+++ b/library/cpp/digest/crc32c/crc32c.h
@@ -5,5 +5,6 @@
// Threadsafe
ui32 Crc32c(const void* p, size_t size) noexcept;
ui32 Crc32cExtend(ui32 init, const void* data, size_t n) noexcept;
+ui32 Crc32cCombine(ui32 blockACrc, ui32 blockBCrc, size_t blockBSize) noexcept;
bool HaveFastCrc32c() noexcept;