File:  [Public] / libwww / Library / src / HTTee.html
Revision 2.10: download - view: text, annotated - select for diffs
Mon Nov 20 00:15:25 1995 UTC (28 years, 6 months ago) by frystyk
Branches: MAIN
CVS tags: v4/0pre6, v4/0C, v4/0B, v4/0, HEAD
Merged Error and Dialog system

<HTML>
<HEAD>
<TITLE>Tee stream</TITLE>
<!-- Changed by: Henrik Frystyk Nielsen, 19-Nov-1995 -->
</HEAD>
<BODY>

<H1>Tee stream</H1>

<PRE>
/*
**	(c) COPYRIGHT MIT 1995.
**	Please first read the full copyright statement in the file COPYRIGH.
*/
</PRE>

The Tee stream just writes everything you put into it into two oter
streams. One use (the only use?!) is for taking a cached copey on disk
while loading the main copy, without having to wait for the disk copy
to be finished and reread it. <P>

This module is implemented by <A HREF="HTTee.c">HTTee.c</A>, and it is
a part of the <A
HREF="http://www.w3.org/pub/WWW/Library/">
W3C Reference Library</A>.

<PRE>

#include "HTStream.h"

extern HTStream * HTTee (HTStream * s1, HTStream * s2);

</PRE>

End of definition

</BODY>
</HTML>

Webmaster