pokeplatinum/tools/nitrogfx/lz.h
Rachel bf232756b6
Some checks are pending
build / build (push) Waiting to run
Store nitrogfx in the source tree (#734)
2025-09-04 21:24:55 -07:00

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