cs2130 / liblzw

C Library for reading LZW compressed files

Home Page:http://freestdf.sf.net/liblzw.php

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Basics

About

liblzw is a small library that provides an API for reading LZW compressed (.Z) files. The API is similar to that of zlib (for reading .gz files) and libbzip2 (for reading .bz2 files) which themselves are just like the classical UNIX functions for reading files (e.g. open/read/fopen/fread/etc...).

The core compression code was taken from the canonical ncompress program.

License

Since the compression algorithms were ripped out of the public-domain package ncompress, liblzw has also been released into the public-domain for people to do with as they will. Just please send me bugfixes as you find them :).

See the UNLICENSE file for more details.

Patents

All existing patents on the LZW algorithm have expired world-wide. So LZW is now patent free.

About

C Library for reading LZW compressed files

http://freestdf.sf.net/liblzw.php

License:The Unlicense


Languages

Language:C 74.6%Language:C++ 6.8%Language:Makefile 6.8%Language:Shell 6.5%Language:M4 5.2%