Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stapelberg/mscompress
compress data using LZ77 algorithm
https://github.com/stapelberg/mscompress
Last synced: 27 days ago
JSON representation
compress data using LZ77 algorithm
- Host: GitHub
- URL: https://github.com/stapelberg/mscompress
- Owner: stapelberg
- License: gpl-2.0
- Created: 2016-02-14T13:32:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-14T13:33:02.000Z (almost 9 years ago)
- Last Synced: 2024-10-14T20:07:08.582Z (2 months ago)
- Language: C
- Size: 53.7 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
mscompress, Microsoft "compress.exe/expand.exe" compatible (de)compressor
Copyright (c) 2000 Martin Hinner
Algorithm & data structures by M. Winterhoff <[email protected]>
ftp://ftp.penguin.cz/pub/users/mhi/mscompress/This package contains two programs:
msexpand, which decompress files compressed by Microsoft compress.exe utility
(e.g. Win 3.x installation files)
mscompress, which compress files using LZ77 compression algorithm. Output
files can be decompressed using Microsoft expand.exe or msexpand(1).To install it on your Unix box, configure the package ("./configure") and
then type "make all test install".-- mhi