From e66708daf7f42dd5cd4f1c54a38a912661e4e633 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Sat, 9 Jul 2016 22:56:12 +0200 Subject: [PATCH] updated doc with zstd homepage --- README.md | 7 +++++-- examples/dictionary_decompression.c | 3 ++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7b58e5e72..120cc96f1 100644 --- 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 | |------------|---------| diff --git a/examples/dictionary_decompression.c b/examples/dictionary_decompression.c index c873fa7c3..39a8189fc 100644 --- a/examples/dictionary_decompression.c +++ b/examples/dictionary_decompression.c @@ -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;