mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-18 12:16:40 -04:00
5 lines
184 B
C
5 lines
184 B
C
void init_lzw_compressor(int dic_size);
|
|
void done_lzw_compressor();
|
|
long lzw_encode(char *source,void *target,int size);
|
|
void lzw_decode(void *source,char *target);
|
|
void reinit_lzw();
|