xref: /csrg-svn/lib/libplot/t300/label.c (revision 48521)
1*48521Sbostic /*-
2*48521Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48521Sbostic  * All rights reserved.
4*48521Sbostic  *
5*48521Sbostic  * %sccs.include.proprietary.c%
6*48521Sbostic  */
7*48521Sbostic 
813315Ssam #ifndef lint
9*48521Sbostic static char sccsid[] = "@(#)label.c	4.2 (Berkeley) 04/22/91";
10*48521Sbostic #endif /* not lint */
1113315Ssam 
1213315Ssam #include "con.h"
1313315Ssam label(s)
1413315Ssam char *s;
1513315Ssam {
1613315Ssam 	int i,c;
1713315Ssam 		while((c = *s++) != '\0'){
1813315Ssam 			xnow += 6;
1913315Ssam 			spew(c);
2013315Ssam 		}
2113315Ssam 		return;
2213315Ssam }
23