xref: /csrg-svn/lib/libplot/t450/label.c (revision 13367)
1*13367Ssam #ifndef lint
2*13367Ssam static char sccsid[] = "@(#)label.c	4.1 (Berkeley) 06/27/83";
3*13367Ssam #endif
4*13367Ssam 
5*13367Ssam #include "con.h"
6*13367Ssam label(s)
7*13367Ssam char *s;
8*13367Ssam {
9*13367Ssam 	int i,c;
10*13367Ssam 		while((c = *s++) != '\0'){
11*13367Ssam 			xnow += 6;
12*13367Ssam 			spew(c);
13*13367Ssam 		}
14*13367Ssam 		return;
15*13367Ssam }
16