All Files in undroid/lzf0.1/
Not logged in

Files in directory undroid/lzf0.1 in any check-in

  • lzf.tcl
  • pkgIndex.tcl
  • README.md

lzf 0.1

Tcl interface to liblzf using Ffidl.

Usage

package require lzf

Compress a byte array:

set b [encoding convertto iso8859-1 "I am a byte array"]
# input must be a byte array
set r [lzf::compress $b]

Decompress a byte array:

# input must be a byte array
# second argument is max. size of uncompress data
set rr [lzf::decompress $r 128]