This repository was forked from https://github.com/robertvazan/snappy-visual-cpp.
Changes:
- Re-targeted to VS2019.
- Removed architecture suffix from library.
- Export C++ symbols.
msbuild snappy.sln /p:Configuration=Release /p:Platform=x64
.\x64\Release\runtests.exe
char compressed[1000];
size_t length = 1000;
snappy_status status = snappy_compress("Hello World!", 12, compressed, &length);