GodMode9i/arm9/source/lzss.h
RocketRobz f8f288a9da Add 2 RAM drives
One shown for both DSi and 3DS (9MB), the other only shown for 3DS (16MB)
2020-02-04 18:25:30 -07:00

13 lines
198 B
C

#ifndef LZ77_DECOMPRESS_H
#define LZ77_DECOMPRESS_H
#ifdef __cplusplus
extern "C" {
#endif
void LZ77_Decompress(u8* source, u8* destination);
#ifdef __cplusplus
}
#endif
#endif /* DECOMPRESS_H */