mirror of
https://github.com/facebook/zstd.git
synced 2025-08-01 09:47:01 +03:00
updated doc with zstd homepage
This commit is contained in:
@ -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 |
|
|Branch |Status |
|
||||||
|------------|---------|
|
|------------|---------|
|
||||||
|
@ -73,7 +73,8 @@ static void* loadFile_X(const char* fileName, size_t* size)
|
|||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* createDict() :
|
||||||
|
`dictFileName` is supposed to have been created using `zstd --train` */
|
||||||
static const ZSTD_DDict* createDict(const char* dictFileName)
|
static const ZSTD_DDict* createDict(const char* dictFileName)
|
||||||
{
|
{
|
||||||
size_t dictSize;
|
size_t dictSize;
|
||||||
|
Reference in New Issue
Block a user