mirror of
https://github.com/Zygo/bees.git
synced 2025-05-18 05:45:45 +02:00
17 lines
249 B
C++
17 lines
249 B
C++
#ifndef CRUCIBLE_CRC64_H
|
|
#define CRUCIBLE_CRC64_H
|
|
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
|
|
namespace crucible {
|
|
namespace Digest {
|
|
namespace CRC {
|
|
uint64_t crc64(const char *s);
|
|
uint64_t crc64(const void *p, size_t len);
|
|
};
|
|
};
|
|
};
|
|
|
|
#endif
|