添加lzw压缩算法

This commit is contained in:
ranchuan
2023-12-02 11:52:15 +08:00
parent 9e46a19283
commit a556d0a141
31 changed files with 1593 additions and 2 deletions

25
zl77/zl77.h Normal file
View File

@@ -0,0 +1,25 @@
#ifndef zl77_h__
#define zl77_h__
#include "stdint.h"
int zl77_encode(const uint8_t *in,const int in_len,uint8_t **out,int *out_len);
int zl77_decode(const uint8_t* in, const int in_len, uint8_t** out, int* out_len);
#endif