1
0
mirror of https://github.com/peterantypas/maiana.git synced 2025-05-16 07:20:08 -07:00
2021-11-14 19:24:21 -08:00

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_ */