/*	@(#)manifest.h	1.1	1/26/85	*/

#ifndef VOID
#define VOID void
#endif

#define FALSE	0			/* Boolean false */
#define TRUE	1			/* Boolean true */

#define TERMINAL	"/dev/tty"	/* User's login terminal */

#ifndef DEF_LINE
#define DEF_LINE	"/dev/ttyd" 	/* default communications line */
#endif

#ifndef DEF_SPEED
#define DEF_SPEED	9600		/* default comm line speed */
#endif

#define MAXPACK		94	/* Maximum packet size (must be > 8) */
#define SOH		1	/* Start of header */
#define SP		32	/* ASCII space */
#define DEL		127	/* Delete (rubout) */
#define CTRLD		4	/* Control-D */
#define BRKCHR		CTRLD	/* default break-connection character */

#define MAXTRY		10	/* Times to retry a packet */

#define MYQUOTE		'#'	/* Quote character I will use */
#define MYPAD		0	/* Number of padding characters I will need */
#define MYPCHAR		0	/* Padding character I need */
#define MYEOL		'\n'	/* End of line character I need */
#define MYTIME		5	/* Seconds after which timeout occurs */
#define MAXTIM		60	/* Maximum timeout interval */
#define MINTIM		1	/* Minumum timeout interval */
