2020-10-08 02:04:42 +02:00
|
|
|
#ifndef CRC32_H__
|
|
|
|
#define CRC32_H__
|
|
|
|
|
2021-02-01 00:40:56 +01:00
|
|
|
|
|
|
|
#include "platform.h"
|
|
|
|
|
2020-10-08 02:04:42 +02:00
|
|
|
|
|
|
|
uint32_t crc32_calculate(void *buffer, size_t length);
|
|
|
|
|
2021-02-01 00:40:56 +01:00
|
|
|
|
2020-10-08 02:04:42 +02:00
|
|
|
#endif
|