mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-29 08:44:15 +01:00
9 lines
129 B
C
9 lines
129 B
C
|
#ifndef CRC32_H__
|
||
|
#define CRC32_H__
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
uint32_t crc32_calculate(void *buffer, size_t length);
|
||
|
|
||
|
#endif
|