/* -*-C-*-
********************************************************************************
*
* File:         screenio.h
* RCS:          $Header: screenio.h,v 1.1 93/03/19 14:25:14 mjp Exp $
* Description:  Pretty color IO for the Emax Utility Program
* Author:       Mike Prudence, (mjp@hplb.hpl.hp.com)
* Created:      Fri Mar 19 14:07:28 1993
* Modified:     Fri Mar 19 14:13:17 1993 (Mike Prudence) mjp@prudence
* Language:     C
*
* (c) Copyright 1993, Mike Prudence
*
********************************************************************************
*/

#define SCREEN_WIDTH 80

#define BLANK_LINE "                                                                "

extern void write_text (int x, int y, int c, char *s);

extern void clear_screen ();

extern void new_screen (char *s);

extern void cursor_on ();

extern void cursor_off ();
