/* ** (c) COPYRIGHT MIT 1995. ** Please first read the full copyright statement in the file COPYRIGH. */A buffered output stream. This stream lets you write characters to a stream without causing a write every time. The data is first written into a buffer. Data is written to the actual stream only when the buffer is full, or when the stream is flushed.
This module is implemented by HTBufWrt.c, and it is a part of the W3C Reference Library.
#ifndef HTBUFWRT_H #define HTBUFWRT_H #include "HTIOStream.h"
#define OUTPUT_BUFFER_SIZE 512
extern HTOutput_new HTBufferWriter_new;
#endif