/* 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"); }