mirror of
https://github.com/red031000/nitrogfx.git
synced 2025-06-18 13:15:35 -04:00
12 lines
321 B
C
12 lines
321 B
C
// Copyright (c) 2015 YamaArashi
|
|
|
|
#ifndef LZ_H
|
|
#define LZ_H
|
|
|
|
#include "stdbool.h"
|
|
|
|
unsigned char *LZDecompress(unsigned char *src, int srcSize, int *uncompressedSize);
|
|
unsigned char *LZCompress(unsigned char *src, int srcSize, int *compressedSize, const int minDistance, bool forwardIteration, bool pad);
|
|
|
|
#endif // LZ_H
|