blob: 54ea16d24dd4bcc2191448b4d4e6857fa9ed110d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Author: Jan Sucan */
#ifndef CRC32Q_H_
#define CRC32Q_H_
#include <stdint.h>
#include <stdlib.h>
void crc32q_init(void);
uint32_t crc32q(const void * const buf, size_t size);
#endif /* CRC32Q_H_ */
|