mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
13 lines
198 B
C
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 */
|