mirror of
https://github.com/NishiOwO/tkwww.git
synced 2025-04-21 16:54:40 +00:00
24 lines
763 B
C
24 lines
763 B
C
/* HTTee: Tee stream for libwww
|
|
TEE STREAM
|
|
|
|
This is part of libwww . 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.
|
|
|
|
*/
|
|
#include "HTStream.h"
|
|
|
|
extern HTStream * HTTee PARAMS((HTStream* s1, HTStream* s2));
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Tim BL
|
|
|
|
*/
|