huffman/inc/decompress.h

9 lines
134 B
C
Raw Normal View History

2016-11-20 00:49:11 +00:00
#ifndef __IN303_DECOMPRESS_H__
#define __IN303_DECOMPRESS_H__
#include <stdio.h>
void decompress(FILE* source, FILE* dest);
#endif