mirror of
https://github.com/tkuschel/bees.git
synced 2025-11-17 23:09:14 +01:00
bees: remove local cruft, throw at github
This commit is contained in:
16
include/crucible/crc64.h
Normal file
16
include/crucible/crc64.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user