summaryrefslogtreecommitdiff
path: root/tools/gbagfx/lz.h
blob: 164d62279acf9a9f0df590e2d029b6ea66143d40 (plain)
1
2
3
4
5
6
7
8
9
// 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