mirror of
https://github.com/peterantypas/maiana.git
synced 2025-05-16 15:30:10 -07:00
18 lines
199 B
C
18 lines
199 B
C
/*
|
|
* crc32.h
|
|
*
|
|
* Created on: Aug 6, 2018
|
|
* Author: peter
|
|
*/
|
|
|
|
#ifndef CRC32_H_
|
|
#define CRC32_H_
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
uint32_t crc32(void *data, uint32_t bytes);
|
|
|
|
|
|
#endif /* CRC32_H_ */
|