File:  [Public] / libwww / Library / src / HTTee.html
Revision 2.6: download - view: text, annotated - select for diffs
Fri May 19 02:06:39 1995 UTC (29 years ago) by frystyk
Branches: MAIN
CVS tags: v3/1pre2, v3/1pre1, WinNT, NT, HEAD
final swap to MIT statements

<HTML>
<HEAD>
<TITLE>HTTee:  Tee stream for libwww</TITLE>
</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/hypertext/WWW/Library/User/Guide/Guide.html">
Library of Common Code</A>.

<PRE>

#include "HTStream.h"

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

</PRE>

End of definition

</BODY>
</HTML>

Webmaster