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