summaryrefslogtreecommitdiff
path: root/crc32/crc32.h
blob: 3eced01ceb9403256bee458c4675e7114d5420c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Not copyrighted 2010 Tobias Klauser
 *
 * This code is in public domain.
 */

#ifndef _CRC32_H_
#define _CRC32_H_

#include <stdint.h>

extern uint32_t crc32(uint32_t crc, const uint8_t *buf, size_t len);

#endif /* _CRC32_H_ */