From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,1ece2318f24b35a7 X-Google-Attributes: gid103376,public From: "Tarjei T. Jensen" Subject: Re: UNIX Compressed Files From A PC Date: 2000/08/14 Message-ID: <8n8lk4$78u7@news.kvaerner.com>#1/1 X-Deja-AN: 658088450 Content-Transfer-Encoding: 7bit References: <3995C90A.E72C055F@acm.org> <3995E7D2.DEFF8821@rtd.com> <3996AD0B.64A8C7D6@acm.org> Content-Type: text/plain; charset="iso-8859-1" X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2120.0 Organization: Kvaerner Group IT Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 2000-08-14T00:00:00+00:00 List-Id: Marin D. Condic wrote >>From what I've been told, GNU's gzip will not handle Unix ".z" files >properly. Besides, I am in a situation where I have to solve this >problem quickly from the perspective of an Ada (or C++) package that >will do the Open/Read/Write/Seek/Close capabilities I mentioned. If I >have to glom onto some GNU code and cobble a solution together for >myself, this will take too much time. I have used gzip to decompress .Z files for many years (.z is another older format). As far as I know the gzip API will not allow you to create a .Z file. You will have to create a .gz file. On the other hand, gzip compresses better than compress. Using the compress algorithm to compress may involve getting a license from Unisys. They have the patent. Greetings,