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

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

/*	curon.c	4.1	83/03/09	*/

#include "2648.h"

curon()
{
	if (_cursoron)
		return;
	sync();
	escseq(ESCD);
	outchar('k');
	_cursoron = 1;
}

curoff()
{
	if (!_cursoron)
		return;
	sync();
	escseq(ESCD);
	outchar('l');
	_cursoron = 0;
}