gsla/source/lzb.h

15 lines
304 B
C
Raw Normal View History

2020-07-09 21:35:34 +00:00
//
// LZB Encode / Decode
//
#ifndef LZB_H
#define LZB_H
//
// returns the size of data saved into the pDest Buffer
//
int LZB_Compress(unsigned char* pDest, unsigned char* pSource, int sourceSize);
void LZB_Decompress(unsigned char* pDest, unsigned char* pSource, int destSize);
#endif // LZB_H