xref: /csrg-svn/lib/libplot/plot/label.c (revision 48520)
1*48520Sbostic /*-
2*48520Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48520Sbostic  * All rights reserved.
4*48520Sbostic  *
5*48520Sbostic  * %sccs.include.proprietary.c%
6*48520Sbostic  */
7*48520Sbostic 
813402Ssam #ifndef lint
9*48520Sbostic static char sccsid[] = "@(#)label.c	4.2 (Berkeley) 04/22/91";
10*48520Sbostic #endif /* not lint */
1113402Ssam 
1213402Ssam #include <stdio.h>
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