cfadmin-cn / lua-lzf

lzf is a very small data compression library.

Home Page:https://cfadmin.cn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lzf

lzf is a very small data compression library.

Usage

local lzf = require "llzf"

local text = "this's text and tell me how to use lzf lib."

Deflate

local enc = lzf.compress(text)

Inflate

local dec = lzf.uncompress(enc)

validation

assert(dec == text)

About

lzf is a very small data compression library.

https://cfadmin.cn

License:Other


Languages

Language:C 75.3%Language:C++ 22.6%Language:Makefile 2.0%