UNMAINTAINED: This library is no longer maintained, because I rarely use Windows or C++ these days. It has not been updated in years. You are welcome to adopt the library if you find it useful.
This is a Windows port of Snappy compression algorithm.
- Documentation: Home, Tutorial for C++
- Download: see Tutorial for C++
- Sources: GitHub, Bitbucket
- Issues: GitHub, Bitbucket
- License: BSD license
- See also upstream Snappy
char compressed[1000]; size_t length = 1000; snappy_status status = snappy_compress( "Hello World!", 12, compressed, &length);