W3C Mini Robot

/*
**	(c) COPYRIGHT MIT 1995.
**	Please first read the full copyright statement in the file COPYRIGH.
*/
The W3C Mini Robot is a "proof of concept" application that is using the W3C Reference Library. It can be used to perform multiple down loads from the command line. It can issue HTTP, FTP, Gopher, local Files, and News request and it can handle GET and HEAD.

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

#ifndef HTROBOT_H
#define HTROBOT_H

Handling of output

#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
#endif
#endif /* HTROBOT_H */
End of HTRobot Declaration