N64FlashcartMenu
Loading...
Searching...
No Matches
crc32.h
Go to the documentation of this file.
1
7#ifndef CRC32_H__
8#define CRC32_H__
9
10
11#include <stddef.h>
12#include <stdint.h>
13
14
15uint32_t crc32_calculate (void *buffer, size_t length);
16
17
18#endif