aboutsummaryrefslogtreecommitdiffstats
path: root/lang/p2c/files/patch-loc.p2clib.c
blob: 459f39be668c8f34907a0e5d4cf0973a873c89dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
--- loc.p2clib.c.orig   1993-12-08 05:36:53 UTC
+++ loc.p2clib.c
@@ -4,3 +4,42 @@
  * the symbol LOCAL_INIT when you compile p2clib.c.
  */
 
+/* Some Turbo "unit crt" functions. */
+
+#include <curses.h>
+#include <term.h>
+
+static int terminfo_initialized;
+static char *cl, *ce;
+
+static void initcurs()
+{
+    if (terminfo_initialized)
+   return;
+    setupterm(0, fileno(stdout), 0);
+    ce = tgetstr("ce", 0);
+    cl = tgetstr("cl", 0);
+    terminfo_initialized = 1;
+}
+
+void clreol()
+{
+    initcurs();
+    if (ce)
+   tputs(ce, 1, putchar);
+}
+
+void clrscr()
+{
+    initcurs();
+    if (cl)
+   tputs(cl, 1, putchar);
+}
+
+void delay(ms)
+int ms;
+{
+    usleep(1000 * ms);
+}
+
+