blob: 989aa239b6eb139e8ce217c2befccc76ca0cb046 (
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
|