/* decode.h */ /* decodes the compresses data in input file assuming that there are BPC bits */ /*used per code and outputs the uncompresses data in output file */ void LZdecode(FILE *input, FILE *output, int BPC);