mirror of
https://github.com/dwsJason/gsla.git
synced 2024-11-25 16:30:54 +00:00
16 lines
388 B
C
16 lines
388 B
C
//
|
|
// 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);
|
|
int Old_LZB_Compress(unsigned char* pDest, unsigned char* pSource, int sourceSize);
|
|
void LZB_Decompress(unsigned char* pDest, unsigned char* pSource, int destSize);
|
|
|
|
#endif // LZB_H
|
|
|