summaryrefslogtreecommitdiff
path: root/dviware/beebe/src/clrrow.h
diff options
context:
space:
mode:
Diffstat (limited to 'dviware/beebe/src/clrrow.h')
-rw-r--r--dviware/beebe/src/clrrow.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/dviware/beebe/src/clrrow.h b/dviware/beebe/src/clrrow.h
new file mode 100644
index 0000000000..e3f65bcdf6
--- /dev/null
+++ b/dviware/beebe/src/clrrow.h
@@ -0,0 +1,16 @@
+/* -*-C-*- clrrow.h */
+/*-->clrrow*/
+/**********************************************************************/
+/****************************** clrrow ********************************/
+/**********************************************************************/
+
+void
+clrrow() /* clear the current character image row, img_row[] */
+{
+ register UNSIGN32 *p;
+ register UNSIGN16 nwords;
+
+ nwords = img_words;
+ for (p = &img_row[nwords-1]; nwords; (--p,--nwords))
+ *p = (UNSIGN32)0L;
+}