]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
updated doc
authorYann Collet <yann.collet.73@gmail.com>
Fri, 15 Jul 2016 16:56:07 +0000 (18:56 +0200)
committerYann Collet <yann.collet.73@gmail.com>
Fri, 15 Jul 2016 16:56:07 +0000 (18:56 +0200)
examples/README.md

index 594e2eaf840e7d03a56e0e8ec1504115889b1846..2f460388150e02c47f204328d5f95aad3d1ac902 100644 (file)
@@ -9,6 +9,10 @@ Zstandard library : usage examples
   Decompress a single file compressed by zstd.
   Introduces usage of : `ZSTD_decompress()`
 
+- [Dictionary compression](dictionary_compression.c)
+  Compress multiple files using the same dictionary.
+  Introduces usage of : `ZSTD_createCDict()` and `ZSTD_compress_usingCDict()`
+
 - [Dictionary decompression](dictionary_decompression.c)
   Decompress multiple files using the same dictionary.
   Introduces usage of : `ZSTD_createDDict()` and `ZSTD_decompress_usingDDict()`