1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

added dictionary_compression.c example

This commit is contained in:
Yann Collet
2016-07-15 18:52:37 +02:00
parent 6cacd34d44
commit cadd7cd54f
4 changed files with 172 additions and 3 deletions

View File

@ -132,5 +132,5 @@ int main(int argc, const char** argv)
int u;
for (u=1; u<argc-1; u++) decompress(argv[u], dictPtr);
printf("All %u files decoded. \n", argc-2);
printf("All %u files correctly decoded (in memory) \n", argc-2);
}