zstd/lib
Yann Collet 23f05ccc6b updated specifications 2016-07-04 16:13:11 +02:00
..
common updated doc 2016-07-04 00:42:58 +02:00
compress ZSTD_storeSeq takes an U32 as offset type 2016-07-03 01:48:26 +02:00
decompress updated specifications 2016-07-04 16:13:11 +02:00
dictBuilder fix : potential leak (#229) 2016-06-30 14:07:30 +02:00
legacy Updated huff0 2016-06-11 01:31:54 +02:00
LICENSE Initial release 2015-01-24 01:58:16 +01:00
Makefile Added `-Wdeclaration-after-statement` compilation flag 2016-06-02 17:56:00 +02:00
README.md updated README following merging of `*_static.h` 2016-06-05 01:38:10 +02:00
libzstd.pc.in Initial release 2015-01-24 01:58:16 +01:00

README.md

zstd - library files

The lib directory contains several files, but depending on target use case, some of them may not be necessary.

Minimal library files

To build the zstd library the following files are required:

Stable API is exposed in common/zstd.h. Advanced and experimental API can be enabled by defining ZSTD_STATIC_LINKING_ONLY. Never use them with a dynamic library, as their definition may change in future versions.

Separate compressor and decompressor

To build a separate zstd compressor all files from common/ and compressor/ directories are required. In a similar way to build a separate zstd decompressor all files from common/ and decompressor/ directories are needed.

Buffered streaming

This complementary API makes streaming integration easier. It is used by zstd command line utility, and 7zip plugin :

  • common/zbuff.h
  • compress/zbuff_compress.c
  • decompress/zbuff_decompress.c

Dictionary builder

To create dictionaries from training sets :

  • dictBuilder/divsufsort.c
  • dictBuilder/divsufsort.h
  • dictBuilder/zdict.c
  • dictBuilder/zdict.h

Miscellaneous

The other files are not source code. There are :

  • LICENSE : contains the BSD license text
  • Makefile : script to compile or install zstd library (static or dynamic)
  • libzstd.pc.in : for pkg-config (make install)