An abstraction library around ulz.
- cmake .
- make
- make install
If you would like to disable OpenSSL support, you can pass -DULZ_DISABLE_SSL:STRING=ON to your cmake command.
gcc yourcode.c -o yourcode -lulz
struct ulz * my_ulz = ulz_new(NULL);
other_functions(my_ulz);
ulz_free(my_ulz);
The end.






