date and time created 83/03/09 16:23:28 by ralph
authorRalph Campbell <ralph@ucbvax.Berkeley.EDU>
Thu, 10 Mar 1983 08:23:28 +0000 (00:23 -0800)
committerRalph Campbell <ralph@ucbvax.Berkeley.EDU>
Thu, 10 Mar 1983 08:23:28 +0000 (00:23 -0800)
SCCS-vsn: old/lib2648/video.c 4.1

usr/src/old/lib2648/video.c [new file with mode: 0644]

diff --git a/usr/src/old/lib2648/video.c b/usr/src/old/lib2648/video.c
new file mode 100644 (file)
index 0000000..c70d078
--- /dev/null
@@ -0,0 +1,20 @@
+/*     video.c 4.1     83/03/09        */
+
+#include "2648.h"
+
+vidnorm()
+{
+       _video = NORMAL;
+}
+
+vidinv()
+{
+       _video = INVERSE;
+}
+
+togvid()
+{
+       _video = (_video==NORMAL) ? INVERSE : NORMAL;
+       escseq(ESCM);
+       outstr("3a1b0 0 719 359e");
+}