xref: /csrg-svn/lib/libplot/plot/label.c (revision 61399)
148520Sbostic /*-
2*61399Sbostic  * Copyright (c) 1983, 1993
3*61399Sbostic  *	The Regents of the University of California.  All rights reserved.
448520Sbostic  *
548520Sbostic  * %sccs.include.proprietary.c%
648520Sbostic  */
748520Sbostic 
813402Ssam #ifndef lint
9*61399Sbostic static char sccsid[] = "@(#)label.c	8.1 (Berkeley) 06/04/93";
1048520Sbostic #endif /* not lint */
1113402Ssam 
1213402Ssam #include <stdio.h>
label(s)1313402Ssam label(s)
1413402Ssam char *s;
1513402Ssam {
1613402Ssam 	int i;
1713402Ssam 	putc('t',stdout);
1813402Ssam 	for(i=0;s[i];)putc(s[i++],stdout);
1913402Ssam 	putc('\n',stdout);
2013402Ssam }
21