zstd/lib
2016-06-26 17:42:15 +02:00
..
common Improved comments 2016-06-26 17:42:15 +02:00
compress fixed strict-aliasing warning on gcc6 2016-06-22 13:15:53 +02:00
decompress Modified : ZSTD_createDDict() accepts dictionary < 8 bytes in pure content mode (reported by @chipturner) 2016-06-19 23:06:54 +02:00
dictBuilder Fixed : dictBuilder fails if first sample is too small 2016-06-22 11:05:34 +02:00
legacy Updated huff0 2016-06-11 01:31:54 +02:00
libzstd.pc.in Initial release 2015-01-24 01:58:16 +01: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

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)