File: README

package info (click to toggle)
glimpse 4.1-1
  • links: PTS
  • area: non-free
  • in suites: hamm
  • size: 2,344 kB
  • ctags: 2,254
  • sloc: ansic: 32,194; makefile: 561; sh: 170; perl: 142
file content (20 lines) | stat: -rw-r--r-- 808 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Copyright (c) 1994 Burra Gopal, Udi Manber.  All Rights Reserved. */

This directory contains the source code for the new text-compression
algorithm. The source is divided as follows:

1. main_comp.c, tcomp.c: source code for tcomp (compress algorithm).
	This also uses simpletest.c and memlook.c from ../index.

2. main_uncomp.c, tuncomp.c: source code for tuncomp (uncompress algorithm).

3. read_in.c: generates build, the procedure which builds the dictionary
	to be used by tuncomp and the hash_table used by tcomp. It uses
	and interprets the output of the indexing-algorithm present
	in ../index, the software is glimpseindex (a part of glimpse).

4. hash.c: common routines used by tcomp and build.

5. string.c: common routines used by tuncomp and build.

6. misc.c, defs.h: common to all above.