xref: /csrg-svn/lib/libplot/t300s/label.c (revision 61403)
148522Sbostic /*-
2*61403Sbostic  * Copyright (c) 1983, 1993
3*61403Sbostic  *	The Regents of the University of California.  All rights reserved.
448522Sbostic  *
548522Sbostic  * %sccs.include.proprietary.c%
648522Sbostic  */
748522Sbostic 
813332Ssam #ifndef lint
9*61403Sbostic static char sccsid[] = "@(#)label.c	8.1 (Berkeley) 06/04/93";
1048522Sbostic #endif /* not lint */
1113332Ssam 
1213332Ssam #include "con.h"
label(s)1313332Ssam label(s)
1413332Ssam char *s;
1513332Ssam {
1613332Ssam 	int i,c;
1713332Ssam 		while((c = *s++) != '\0'){
1813332Ssam 			xnow += HORZRES;
1913332Ssam 			spew(c);
2013332Ssam 		}
2113332Ssam 		return;
2213332Ssam }
23