pokeemerald/tools/gbagfx/lz.h

10 lines
243 B
C
Raw Normal View History

2015-11-14 06:57:22 +01:00
// 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);
#endif // LZ_H