summaryrefslogtreecommitdiff
path: root/tools/gbagfx/lz.h
blob: 90f56b6430aba617db6e2f9bfdb7c7717981b43e (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, const int minDistance);

#endif // LZ_H