1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00
Paul Jones 334f5f83ee Remove unused crc64 function
Signed-off-by: Paul Jones <paul@pauljones.id.au>
2016-12-13 12:52:26 +11:00

17 lines
234 B
C++

#ifndef CRUCIBLE_CRC64_H
#define CRUCIBLE_CRC64_H
#include <cstdint>
#include <cstdlib>
#include <cstring>
namespace crucible {
namespace Digest {
namespace CRC {
uint64_t crc64(const void *p, size_t len);
};
};
};
#endif