date and time created 83/06/27 14:09:03 by sam
authorSam Leffler <sam@ucbvax.Berkeley.EDU>
Tue, 28 Jun 1983 05:09:03 +0000 (21:09 -0800)
committerSam Leffler <sam@ucbvax.Berkeley.EDU>
Tue, 28 Jun 1983 05:09:03 +0000 (21:09 -0800)
SCCS-vsn: lib/libplot/t300/label.c 4.1

usr/src/lib/libplot/t300/label.c [new file with mode: 0644]

diff --git a/usr/src/lib/libplot/t300/label.c b/usr/src/lib/libplot/t300/label.c
new file mode 100644 (file)
index 0000000..dffc4cb
--- /dev/null
@@ -0,0 +1,15 @@
+#ifndef lint
+static char sccsid[] = "@(#)label.c    4.1 (Berkeley) %G%";
+#endif
+
+#include "con.h"
+label(s)
+char *s;
+{
+       int i,c;
+               while((c = *s++) != '\0'){
+                       xnow += 6;
+                       spew(c);
+               }
+               return;
+}