date and time created 85/01/02 20:29:49 by jak
[unix-history] / usr / src / lib / libplot / vt0 / label.c
#ifndef lint
static char sccsid[] = "@(#)label.c 4.1 (Berkeley) %G%";
#endif
extern vti;
label(s)
char *s;
{
int i, o;
o = 01401;
write(vti, &o, 2);
for(i=0; s[i++]; )
;
write(vti, s, i);
}