Files
c_progarm/other/huffman.htt
2023-12-02 11:52:15 +08:00

20 lines
186 B
Plaintext

#ifndef huffman_h__
#define huffman_h__
#include "bytearray.h"
// huffman编码的实现
array_def *hm_encode(array_def *data);
array_def *hm_decode(array_def *data);
#endif