2015-12-04 14:47:52 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2015-12-04 14:47:52 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2016-09-06 16:44:05 +00:00
|
|
|
#ifndef _CPU_CRC32_H
|
|
|
|
#define _CPU_CRC32_H
|
2016-09-05 19:47:26 +00:00
|
|
|
|
2016-09-06 13:28:56 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2021-06-17 07:45:30 +00:00
|
|
|
int cpu_crc32 (const char *filename, u8 *keytab, const size_t keytabsz);
|
2017-01-24 09:28:35 +00:00
|
|
|
u32 cpu_crc32_buffer (const u8 *buf, const size_t length);
|
2016-09-06 13:28:56 +00:00
|
|
|
|
2016-09-06 16:44:05 +00:00
|
|
|
#endif // _CPU_CRC32_H
|