huffman/inc/compress.h

9 lines
128 B
C
Raw Normal View History

2016-10-25 04:51:07 +00:00
#ifndef __IN303_COMPRESS_H__
#define __IN303_COMPRESS_H__
#include <stdio.h>
2016-10-25 04:51:07 +00:00
void compress(FILE* source, FILE* dest);
2016-10-25 04:51:07 +00:00
#endif