zstd/examples
2016-09-09 14:56:15 +02:00
..
.gitignore added streaming_decompression example 2016-08-16 15:11:28 +02:00
dictionary_compression.c added boilerplate 2016-08-30 11:06:28 -07:00
dictionary_decompression.c added boilerplate 2016-08-30 11:06:28 -07:00
Makefile clarified tests 2016-09-08 19:39:00 +02:00
README.md clarified doc 2016-09-09 14:56:15 +02:00
simple_compression.c added boilerplate 2016-08-30 11:06:28 -07:00
simple_decompression.c added boilerplate 2016-08-30 11:06:28 -07:00
streaming_compression.c added boilerplate 2016-08-30 11:06:28 -07:00
streaming_decompression.c clarified doc 2016-09-09 14:56:15 +02:00

Zstandard library : usage examples

  • Simple compression : Compress a single file. Introduces usage of : ZSTD_compress()

  • Simple decompression : Decompress a single file. Only compatible with simple compression. Result remains in memory. Introduces usage of : ZSTD_decompress()

  • Streaming compression : Compress a single file. Introduces usage of : ZSTD_compressStream()

  • Streaming decompression : Decompress a single file compressed by zstd. Compatible with both simple and streaming compression. Result is sent to stdout. Introduces usage of : ZSTD_decompressStream()

  • Dictionary compression : Compress multiple files using the same dictionary. Introduces usage of : ZSTD_createCDict() and ZSTD_compress_usingCDict()

  • Dictionary decompression : Decompress multiple files using the same dictionary. Result remains in memory. Introduces usage of : ZSTD_createDDict() and ZSTD_decompress_usingDDict()