diff options
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 |
