diff options
| author | Enrique | 2025-01-06 16:40:25 +0100 |
|---|---|---|
| committer | Enrique | 2025-01-06 16:40:25 +0100 |
| commit | 7f3fab3aab6a4de059277330fa52049033f022fc (patch) | |
| tree | b918c9dc8314463fb67cfbd1d33338b814d03a7a /src/crc64/crc64.h | |
| download | soikk-server-7f3fab3aab6a4de059277330fa52049033f022fc.tar.xz soikk-server-7f3fab3aab6a4de059277330fa52049033f022fc.tar.zst | |
Initial commit
Diffstat (limited to 'src/crc64/crc64.h')
| -rwxr-xr-x | src/crc64/crc64.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/crc64/crc64.h b/src/crc64/crc64.h new file mode 100755 index 0000000..e031e76 --- /dev/null +++ b/src/crc64/crc64.h @@ -0,0 +1,11 @@ +#ifndef CRC64_H +#define CRC64_H + +// Header file created because of project necessity +// Source for c file: https://github.com/srned/baselib/blob/master/crc64.c + +#include <inttypes.h> + +uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l); + +#endif |
