mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-01-05 18:40:16 -06:00
10 lines
242 B
C++
10 lines
242 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <array>
|
|
|
|
std::array<uint8_t, 4> crc32c(const char* buf, size_t len);
|
|
|
|
std::array<uint8_t, 4> crc32cCombine(std::array<uint8_t, 4> crcA, std::array<uint8_t, 4> crcB, size_t lenB);
|