xref: /original-bsd/lib/libplot/grn/label.c (revision 2301fdfb)
1 /*
2  * Copyright (c) 1980, 1986 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  */
6 
7 #ifndef lint
8 static char sccsid[] = "@(#)label.c	6.1 (Berkeley) 08/29/86";
9 #endif not lint
10 
11 
12 #include "grnplot.h"
13 
14 /*---------------------------------------------------------
15  *	This routine places a label starting at the current
16  *	position.
17  *
18  *	Results:	None.
19  *
20  *	Side Effects:
21  *	The string indicated by s starting at (curx, cury).
22  *	The current position is NOT updated.
23  *---------------------------------------------------------
24  */
25 label(s)
26 char *s;
27 {
28 	if (!ingrnfile) erase();
29 	endvector();
30 	printf("BOTLEFT\n");
31 	outcurxy();
32 	printf("*\n%d %d\n%d %s\n",FONTSTYLE,FONTSIZE,strlen(s)-1,s);
33 }
34