aboutsummaryrefslogtreecommitdiff
path: root/redist/crc32.h
blob: 5a8d16a892847db80d1f400917db7afe82af036c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// (C) 2016 Joshua Allen, MIT/x11 License.
//
//All MIT/x11 Licensed Code in this file may be relicensed freely under the GPL or LGPL licenses.
//crc32.c under liberal license.
//
// You should only include this file if you are going to include the calibration subsystem of libsurvive.

#ifndef CRC32_H
#define CRC32_H

#include <stddef.h>
#include <stdint.h>

uint32_t crc32(uint32_t crc, uint8_t *buf, size_t size);

#endif