huffman/inc/compress.h

10 lines
149 B
C

#ifndef __IN303_COMPRESS_H__
#define __IN303_COMPRESS_H__
#include "huftree.h"
#include <stdio.h>
void compress(FILE* source, FILE* dest);
#endif