Annotation of libwww/Library/src/HTMerge.html, revision 2.2

2.1       frystyk     1: <HTML>
                      2: <HEAD>
                      3:   <!-- Changed by: Henrik Frystyk Nielsen, 31-May-1996 -->
2.2     ! frystyk     4:   <TITLE>W3C Sample Code Library libwww Merge Stream</TITLE>
2.1       frystyk     5: </HEAD>
                      6: <BODY>
                      7: <H1>
                      8:   Merge 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: The <I>Merge</I> stream can be used to merge multiple streams into a single
                     18: target stream. The Merge stream does not prevent any of the streams from
                     19: writing and no ordering is imposed. The main feature is basically that the
                     20: free and abort methods can be called n times where n equals the number of
                     21: feeds that put data to the stream.
                     22: <P>
                     23: This module is implemented by <A HREF="HTMerge.c">HTMerge.c</A>, and it is
2.2     ! frystyk    24: a part of the <A HREF="http://www.w3.org/pub/WWW/Library/"> W3C Sample Code
2.1       frystyk    25: Library</A>.
                     26: <PRE>
                     27: #ifndef _HTMERGE_H
                     28: #define _HTMERGE_H
                     29: 
                     30: #include "HTStream.h"
                     31: 
                     32: extern HTStream * HTMerge (HTStream * target, int feeds);
                     33: 
                     34: #endif /* HTMERGE_H */
                     35: </PRE>
                     36: <P>
                     37:   <HR>
                     38: <ADDRESS>
2.2     ! frystyk    39:   @(#) $Id: HTMerge.html,v 2.1 1996/10/07 16:38:13 frystyk Exp $
2.1       frystyk    40: </ADDRESS>
                     41: </BODY></HTML>

Webmaster