File:  [Public] / libwww / Library / src / WWWZip.html
Revision 2.5: download - view: text, annotated - select for diffs
Sun May 24 19:39:40 1998 UTC (26 years ago) by frystyk
Branches: MAIN
CVS tags: repeat-requests, candidate-5-4-1, before_webdav, Release-5-4-0, Release-5-3-1, Release-5-2-8, Release-5-2-6, Release-5-2, Release-5-1m, HEAD, Before-New-Trace-Messages, Amaya_2_4, Amaya-6-3, Amaya-6-1, Amaya-5-2, Amaya-4-3-2, Amaya-4-3-1, Amaya-4-3, Amaya-4-1-2, Amaya-4-1-0, Amaya-4-0-0, Amaya-3-2-1, Amaya-3-2, Amaya
Made SQL module into a DLL with its own WWWSQL.html

<HTML>
<HEAD>
  <!-- Changed by: Henrik Frystyk Nielsen, 16-Apr-1996 -->
  <TITLE>W3C Sample Code Library libwww ZLib Streams</TITLE>
</HEAD>
<BODY>
<H1>
  W3C Sample Code Library libwww ZLib Streams
</H1>
<PRE>
/*
**	(c) COPYRIGHT MIT 1995.
**	Please first read the full copyright statement in the file COPYRIGH.
*/
</PRE>
<P>
The stream part of the Library is a set of streams that can be used to
encode/decode, or compress/decompress content. Many of the streams are based
on <A HREF="http://www.cdrom.com/pub/infozip/zlib/">zlib</A> which is a freely
available compression library.
<PRE>
#ifndef WWWZIP_H
#define WWWZIP_H
</PRE>
<PRE>
#ifdef __cplusplus
extern "C" { 
#endif
</PRE>
<H3>
  System dependencies
</H3>
<P>
The <A HREF="wwwsys.html">wwwsys.h</A> file includes system-specific include
files and flags for I/O to network and disk. The only reason for this file
is that the Internet world is more complicated than Posix and ANSI.
<PRE>#include "wwwsys.h"
</PRE>
<H3>
  GZip Compression / Decompression
</H3>
<P>
This stream can encode / decode gzipped content.
<PRE>#include "<A HREF="HTZip.html">HTZip.h</A>"
</PRE>
<PRE>
#ifdef __cplusplus
} /* end extern C definitions */
#endif

#endif
</PRE>
<P>
  <HR>
<ADDRESS>
  @(#) $Id: WWWZip.html,v 2.5 1998/05/24 19:39:40 frystyk Exp $
</ADDRESS>
</BODY></HTML>

Webmaster