/*
Screen editor: terminal output module
Source: ed6.c
This file was created by the configuration program:
Version 2: September 6, 1981.
*/
#include ed1.h
/*
This I/O section is designed for multiple terminals.
Include the following #define for VT100/ANSI escape
sequences, and comment it out for VT52 escape sequences.
*/
#define VT100
/*
Define the current coordinates of the cursor.
*/
/*
Return the current coordinates of the cursor.
*/
outgetx()
{
return(outx);
}
outgety()
{
return(outy);
}
/*
Output one printable character to the screen.
*/