10 lines
266 B
C
Raw Normal View History

2017-12-03 19:55:01 -06: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, const int minDistance);
2017-12-03 19:55:01 -06:00
#endif // LZ_H