添加lzw压缩算法
This commit is contained in:
19
huffman/huffman_.h
Normal file
19
huffman/huffman_.h
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
#ifndef huffman_h__
|
||||
#define huffman_h__
|
||||
|
||||
#include "stdint.h"
|
||||
|
||||
// huffman编码的实现
|
||||
|
||||
int hm_encode(const uint8_t *in,const int in_len,uint8_t **out,int *out_len);
|
||||
|
||||
int hm_decode(const uint8_t* in, const int in_len, uint8_t** out, int* out_len);
|
||||
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user