4.1cBSD/usr/src/usr.lib/lib2648/agoto.c

Compare this file to the similar file:
Show the results in this format:

/*	agoto.c	4.1	83/03/09	*/
/*
 * position the alphanumeric cursor to (x, y).
 */

#include "2648.h"

agoto(x, y)
int x, y;
{
	char mes[20];
	sprintf(mes, "\33*dE\33&a%dr%dC", x, y);
	outstr(mes);
}

/*
 * lower left corner of screen.
 */
lowleft()
{
	outstr("\33F");
}