mirror of
https://github.com/deater/tb1.git
synced 2024-12-22 13:29:48 +00:00
5 lines
212 B
C
5 lines
212 B
C
int lzss_encode(FILE *infile,FILE *outfile);
|
|
int lzss_encode_better(FILE *infile,FILE *header,FILE *outfile,
|
|
unsigned char frequent_char,
|
|
int ring_buffer_size, int position_length_threshold);
|