xref: /csrg-svn/lib/libplot/t300/label.c (revision 61399)
148521Sbostic /*-
2*61399Sbostic  * Copyright (c) 1983, 1993
3*61399Sbostic  *	The Regents of the University of California.  All rights reserved.
448521Sbostic  *
548521Sbostic  * %sccs.include.proprietary.c%
648521Sbostic  */
748521Sbostic 
813315Ssam #ifndef lint
9*61399Sbostic static char sccsid[] = "@(#)label.c	8.1 (Berkeley) 06/04/93";
1048521Sbostic #endif /* not lint */
1113315Ssam 
1213315Ssam #include "con.h"
label(s)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