W3C Mini Server

/*
**	(c) COPYRIGHT MIT 1995.
**	Please first read the full copyright statement in the file COPYRIGH.
*/
The W3C Mini Server is a very simple cross platform, non-forking server. It is developed as a test tool for the W3C Reference Library.

The module is implemented by HTServer.c, and it is a part of the W3C Mini Server.

#ifndef HTSERVER_H
#define HTSERVER_H
#if WWWTRACE_MODE == WWWTRACE_TTY
#define STDOUT 1
#define OUTPUT 2	/* used in TTYPrint's switch for output multiplexing */
#else
#define STDOUT stdout
#define OUTPUT stdout    /* output is a global target for output redirection */
#endif
#endif /* HTSERVER_H */
End of Declaration