date and time created 83/11/10 14:43:44 by ralph
[unix-history] / usr / src / lib / libplot / vt0 / label.c
CommitLineData
6513decd
SL
1#ifndef lint
2static char sccsid[] = "@(#)label.c 4.1 (Berkeley) %G%";
3#endif
4
5extern vti;
6
7label(s)
8char *s;
9{
10 int i, o;
11
12 o = 01401;
13 write(vti, &o, 2);
14 for(i=0; s[i++]; )
15 ;
16 write(vti, s, i);
17}