xref: /csrg-svn/lib/libplot/t450/label.c (revision 48525)
1*48525Sbostic /*-
2*48525Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48525Sbostic  * All rights reserved.
4*48525Sbostic  *
5*48525Sbostic  * %sccs.include.proprietary.c%
6*48525Sbostic  */
7*48525Sbostic 
813367Ssam #ifndef lint
9*48525Sbostic static char sccsid[] = "@(#)label.c	4.2 (Berkeley) 04/22/91";
10*48525Sbostic #endif /* not lint */
1113367Ssam 
1213367Ssam #include "con.h"
1313367Ssam label(s)
1413367Ssam char *s;
1513367Ssam {
1613367Ssam 	int i,c;
1713367Ssam 		while((c = *s++) != '\0'){
1813367Ssam 			xnow += 6;
1913367Ssam 			spew(c);
2013367Ssam 		}
2113367Ssam 		return;
2213367Ssam }
23