We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9ece63 commit c6c71b4Copy full SHA for c6c71b4
source/lz77.c
@@ -87,8 +87,6 @@ int lz77_compress(const unsigned char *original, unsigned char **compressed, int
87
/// 写入头部数据
88
hsize = sizeof(int);
89
90
- printf("dddddddddd:%d", hsize);
91
-
92
if ((comp = (unsigned char *)malloc(hsize)) == NULL) return -1;
93
94
memcpy(comp, &size, sizeof(int));
0 commit comments