From: Damian Yerrick Newsgroups: comp.os.msdos.djgpp Subject: Re: realloc causing fault Organization: Pin Eight Software http://pineight.8m.com/ Message-ID: References: <000501c05f64$6852d080$3e14883e AT gtdf> X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 25 X-Trace: /Kw5eC/HMYRkA6KuZkPJU5c1dRQIj35wvjVDZj3P5e5kEFCqXHT/EQJDwshcQniCx+aJDGR6xTbB!3YLIKyEILS2VW46vfywPZ6FERtxF2WjudsBAud0nSw67t9OXADPYuOFpN+Hi79Ezlv20KjKYF2+e!L6wm2A== X-Complaints-To: abuse AT gte DOT net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly NNTP-Posting-Date: Thu, 07 Dec 2000 05:38:16 GMT Distribution: world Date: Thu, 07 Dec 2000 05:38:16 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Wed, 6 Dec 2000 09:10:27 -0000, "Greg Holdridge" wrote: >Decompress a file done in bog-standard LZW compression LZW compression is no longer the standard. http://burnallgifs.org/ Deflate is the new standard. http://www.info-zip.org/pub/infozip/zlib/ Why else would the GNU system use deflated .gz files instead of LZW-compressed .Z files? >all ASCII characters are roots. No, all bytes are roots. ASCII characters range from 0 to 0x7f; the LZW you're trying to implement (but you'll probably get sued for it) covers all bytes from 0 to 0xff. --