tb1/tb_asm/lzss.h

5 lines
212 B
C
Raw Normal View History

2012-12-19 02:43:40 +00:00
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);