]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
updated doc with zstd homepage
authorYann Collet <yann.collet.73@gmail.com>
Sat, 9 Jul 2016 20:56:12 +0000 (22:56 +0200)
committerYann Collet <yann.collet.73@gmail.com>
Sat, 9 Jul 2016 20:56:12 +0000 (22:56 +0200)
README.md
examples/dictionary_decompression.c

index 7b58e5e728f6a45555321dcd2a28027570e38443..120cc96f193d1728cf14c3d4f1a367b802fc2abe 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,6 +1,9 @@
- **Zstd**, short for Zstandard, is a fast lossless compression algorithm, targeting real-time compression scenarios at zlib-level and better compression ratios.
+ **Zstd**, short for Zstandard, is a fast lossless compression algorithm,
+ targeting real-time compression scenarios at zlib-level and better compression ratios.
 
-It is provided as a BSD-license package, hosted on Github.
+It is provided as an open-source C library BSD-licensed.
+If you're looking for a different programming language,
+you can consult a list of known ports on [Zstandard homepage](httP://www.zstd.net).
 
 |Branch      |Status   |
 |------------|---------|
index c873fa7c35f84c0111a07c531b6b7e17ba29ece0..39a8189fc528b14922e8f439f717768ee936585e 100644 (file)
@@ -73,7 +73,8 @@ static void* loadFile_X(const char* fileName, size_t* size)
     return buffer;
 }
 
-
+/* createDict() :
+   `dictFileName` is supposed to have been created using `zstd --train` */
 static const ZSTD_DDict* createDict(const char* dictFileName)
 {
     size_t dictSize;