huffman/inc/compress.h

15 lines
286 B
C
Raw Normal View History

2016-10-25 04:51:07 +00:00
#ifndef __IN303_COMPRESS_H__
#define __IN303_COMPRESS_H__
#include "huftree.h"
2016-10-27 16:20:18 +00:00
#define COMPRESS_OK 0
#define COMPRESS_READ_ERROR 1
#define COMPRESS_WRITE_ERROR 2
#define COMPRESS_OPEN_INPUT_ERROR 3
#define COMPRESS_OPEN_OUTPUT_ERROR 4
int compress(const char*, const char*);
2016-10-25 04:51:07 +00:00
#endif