mirror of
https://github.com/pret/pokediamond.git
synced 2026-04-26 08:17:27 -05:00
12 lines
311 B
C
12 lines
311 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);
|
|
|
|
#endif // LZ_H
|