Annotation of libwww/Library/src/HTZip.html, revision 2.4

2.1       frystyk     1: <HTML>
                      2: <HEAD>
                      3:   <!-- Changed by: Henrik Frystyk Nielsen, 23-Mar-1996 -->
2.4     ! frystyk     4:   <TITLE>W3C Sample Code Library libwww ZLib Compress and Decompress Stream</TITLE>
2.1       frystyk     5: </HEAD>
                      6: <BODY>
                      7: <H1>
                      8:   ZLib Compress and Decompress Stream
                      9: </H1>
                     10: <PRE>
                     11: /*
                     12: **     (c) COPYRIGHT MIT 1995.
                     13: **     Please first read the full copyright statement in the file COPYRIGH.
                     14: */
                     15: </PRE>
                     16: <P>
                     17: This module provides an interface to the zlib compress and decompress functions. It can be hooked inas as content encoding coder/decoder in libwww which allows for on-the-fly encoding/decoding.
                     18: <P>
                     19: This module is implemented by <A HREF="HTZip.c">HTZip.c</A>, and it
2.4     ! frystyk    20: is a part of the <A HREF="http://www.w3.org/pub/WWW/Library/"> W3C Sample Code
2.1       frystyk    21: Library</A>.
                     22: <PRE>
                     23: #ifndef HTZIP_H
                     24: #define HTZIP_H
                     25: 
                     26: #include "HTFormat.h"
                     27: </PRE>
                     28: <PRE>
2.3       frystyk    29: #ifdef HT_ZLIB
2.1       frystyk    30: extern HTCoder HTZLib_inflate;
2.2       frystyk    31: #endif
2.1       frystyk    32: </PRE>
                     33: <P>
                     34: End of definition module
                     35: <PRE>
                     36: #endif /* HTZIP_H */
                     37: </PRE>
                     38: <P>
                     39:   <HR>
                     40: <ADDRESS>
2.4     ! frystyk    41:   @(#) $Id: HTZip.html,v 2.3 1997/01/28 14:30:51 frystyk Exp $
2.1       frystyk    42: </ADDRESS>
                     43: </BODY></HTML>

Webmaster