xref: /csrg-svn/lib/libplot/hp7221/label.c (revision 61395)
148518Sbostic /*-
2*61395Sbostic  * Copyright (c) 1980, 1993
3*61395Sbostic  *	The Regents of the University of California.  All rights reserved.
448518Sbostic  *
548518Sbostic  * %sccs.include.proprietary.c%
619978Sdist  */
719978Sdist 
815471Sralph #ifndef lint
9*61395Sbostic static char sccsid[] = "@(#)label.c	8.1 (Berkeley) 06/04/93";
1048518Sbostic #endif /* not lint */
1115471Sralph 
1215471Sralph #include "hp7221.h"
1315471Sralph 
label(s)1415471Sralph label(s)
1515471Sralph char *s;
1615471Sralph {
1715471Sralph 	printf("~'%s", s);
1815471Sralph 	putchar( ENDOFSTRING );
1915471Sralph }
20