blob: 331d93ae0fe6f3047f7c6a79a54533bc31f4540b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
"À-la-gzip" LZSS compressor
===========================
A toy implementation of a simple gzip-like LZSS text compressor written in Nim.
This project is part of the compressor course at the Paris-East Marne-la-Vallée university.
Test and build
--------------
Building this project requires Nim and Nimble version 0.19.0 or later.
* `nimble build` produces a binary named `main`
* `nimble test` runs the included unit tests
Usage
-----
Compression and decompression are done using the `compress` and `decompress` commands repsectively.
The input stream is read from the standard input.
The result is outputted to the standard output.
License
-------
Copyright (C) 2018 Pacien TRAN-GIRARD.
This project is distributed under the terms of the GNU Affero General Public License v3.0, as detailed in the provided `license.md` file.
|