date and time created 85/01/02 20:10:33 by jak
[unix-history] / usr / src / lib / libplot / gigi / label.c
CommitLineData
c056cc7d
RC
1#ifndef lint
2static char sccsid[] = "@(#)label.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "gigi.h"
6
7label(s)
8char *s;
9{
10 printf("T(S0 H2 D0 I0) \"");
11 for(;*s!='\0';s++) {
12 putchar(*s);
13 if (*s == '"') putchar('"');
14 }
15 putchar('"');
16}