mirror of
https://github.com/TheGameratorT/NDS_Banner_Editor.git
synced 2025-06-18 13:35:32 -04:00
9 lines
105 B
C
9 lines
105 B
C
#ifndef CRC_H
|
|
#define CRC_H
|
|
|
|
#include "types.h"
|
|
|
|
u16 crc16(const u8* data, u32 length);
|
|
|
|
#endif // CRC_H
|