lz77.h 213 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 #ifndef __LZ77_H__ #define __LZ77_H__ #include "hashmap.h" #include "bitwriter.h" #include <assert.h> #include <stdio.h> #include <stdlib.h> size_t write_lz77_stream(FILE *input_file, FILE *output_file); #endif