File:  [Public] / libwww / Library / src / HTTee.html
Revision 2.4: download - view: text, annotated - select for diffs
Tue Mar 21 17:45:29 1995 UTC (29 years, 2 months ago) by frystyk
Branches: MAIN
CVS tags: v3/0, WindowsNT, HEAD
Getting Library back on main branch

<HTML>
<HEAD>
<TITLE>HTTee:  Tee stream for libwww</TITLE>
</HEAD>
<BODY>

<H1>Tee stream</H1>

<PRE>
/*
**	(c) COPYRIGHT CERN 1994.
**	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://info.cern.ch/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