xref: /original-bsd/old/lib2648/curon.c (revision 014fe330)
1 /*	curon.c	4.1	83/03/09	*/
2 
3 #include "2648.h"
4 
5 curon()
6 {
7 	if (_cursoron)
8 		return;
9 	sync();
10 	escseq(ESCD);
11 	outchar('k');
12 	_cursoron = 1;
13 }
14 
15 curoff()
16 {
17 	if (!_cursoron)
18 		return;
19 	sync();
20 	escseq(ESCD);
21 	outchar('l');
22 	_cursoron = 0;
23 }
24