aboutsummaryrefslogtreecommitdiff
path: root/sys/gty/zzdebug.x
diff options
context:
space:
mode:
Diffstat (limited to 'sys/gty/zzdebug.x')
-rw-r--r--sys/gty/zzdebug.x26
1 files changed, 26 insertions, 0 deletions
diff --git a/sys/gty/zzdebug.x b/sys/gty/zzdebug.x
new file mode 100644
index 00000000..c8171b4c
--- /dev/null
+++ b/sys/gty/zzdebug.x
@@ -0,0 +1,26 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+task dump = t_dump
+
+# DUMP -- Dump a termcap (GTY) device entry.
+
+procedure t_dump()
+
+char fname[SZ_FNAME]
+char device[SZ_FNAME]
+char ufields[SZ_LINE]
+
+pointer gty
+pointer gtyopen()
+pointer gtycaps()
+
+begin
+ call clgstr ("fname", fname, SZ_FNAME)
+ call clgstr ("device", device, SZ_FNAME)
+ call clgstr ("ufields", ufields, SZ_LINE)
+
+ gty = gtyopen (fname, device, ufields)
+ call printf ("%s\n")
+ call pargstr (Memc[gtycaps(gty)])
+ call gtyclose (gty)
+end