mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
1f4c88c952
* Copy Berry Fix MB dism from FR
10 lines
266 B
C
10 lines
266 B
C
// Copyright (c) 2015 YamaArashi
|
|
|
|
#ifndef LZ_H
|
|
#define LZ_H
|
|
|
|
unsigned char *LZDecompress(unsigned char *src, int srcSize, int *uncompressedSize);
|
|
unsigned char *LZCompress(unsigned char *src, int srcSize, int *compressedSize, const int minDistance);
|
|
|
|
#endif // LZ_H
|