This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* PROG1.C */ | |
/* Simple Hashing LZ77 Sliding Dictionary Compression Program */ | |
/* By Rich Geldreich, Jr. October, 1993 */ | |
/* Originally compiled with QuickC v2.5 in the small model. */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <ctype.h> | |
/* set this to 1 for a greedy encoder */ |