mirror of
https://github.com/dwsJason/gsla.git
synced 2024-11-21 21:31:39 +00:00
15 lines
304 B
C
15 lines
304 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);
|
|
void LZB_Decompress(unsigned char* pDest, unsigned char* pSource, int destSize);
|
|
|
|
#endif // LZB_H
|
|
|