zstd/lib
Yann Collet f4f5affdf7 restore ZBUFF full-block-size, for better performance on small input 2016-06-03 23:09:28 +02:00
..
common zlibWrapper: ZWRAP_createCCtx and ZWRAP_freeCCtx use custom memory allocation functions 2016-06-03 14:53:51 +02:00
compress restore ZBUFF full-block-size, for better performance on small input 2016-06-03 23:09:28 +02:00
decompress restore ZBUFF full-block-size, for better performance on small input 2016-06-03 23:09:28 +02:00
dictBuilder Expose function to add entropy tables to pre-built dictionary. 2016-05-30 19:50:09 -07:00
legacy added `ZSTDv05_getFrameParams()` to "zstd_v05.h" 2016-05-17 12:01:55 +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 common/util.h moved to programs/util.h 2016-05-09 16:19:25 +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 is exposed in common/zstd_static.h. API elements of common/zstd_static.h should be used with static linking only, as their definition may change in future version of the library.

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
  • common/zbuff_static.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
  • dictBuilder/zdict_static.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)