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