Registry / utility / liblzf

liblzf

JSON →
library3.6vcpkgunverified

LZF is an extremely fast compression algorithm. It is ideal for applications where you want to save some space but not at the cost of speed.

vcpkg install liblzf
INSTALL
IMPORT
SIG · LIBLZF
L
liblzf
utilitycppv3.6
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

lzf.h
#include <lzf.h>

Compress a string using LZF.

#include <lzf.h> #include <cstring> int main() { const char* input = "Hello, world!"; unsigned int input_len = strlen(input) + 1; unsigned int compressed_len = input_len; char* compressed = new char[compressed_len]; lzf_compress(input, input_len, compressed, &compressed_len); delete[] compressed; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.6latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources

No resource links recorded.

liblzf — pip install liblzf · libregistry