mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-26 00:32:20 -05: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
|