summaryrefslogtreecommitdiff
path: root/src/crc64/crc64.h
blob: e031e76c6baf28e515cc94facfc2da2a05ec7b93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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