Manages Read and Write to and from an ANSI C File Descriptor

/*
**	(c) COPYRIGHT MIT 1995.
**	Please first read the full copyright statement in the file COPYRIGH.
*/
This module defines the read and write functions to and from the network. As we are having reentrant function and a smarter network I/O this will get very small :-)

This module is implemented by HTAnsi.c, and it is a part of the W3C Reference Library.

#ifndef HTANSI_H
#define HTANSI_H

#include "HTIOStream.h"

Input Buffering

In order to optimize reading a channel, we bind a buffer to each channel object. The size of this buffer is a compromise between speed and memory.
#define FILE_BUFFER_SIZE	8192

Read Stream

extern HTInput_new HTANSIReader_new;

Write Stream

extern HTOutput_new HTANSIWriter_new;
#endif
End of declaration module