11786a857ff03c3e1984f5550167ccf7ea5822f9
[unix-history] / usr / src / lib / libplot / hp2648 / label.c
#ifndef lint
static char sccsid[] = "@(#)label.c 4.1 (Berkeley) %G%";
#endif
#include "hp2648.h"
label(s)
char *s;
{
handshake();
putchar(ESC);
putchar(GRAPHIC);
putchar('l');
for(;*s!='\0';s++)
putchar(*s);
putchar(ESC);
putchar(GRAPHIC);
putchar('d');
putchar('T');
handshake();
putchar(ESC);
putchar(GRAPHIC);
putchar(PLOT);
putchar(BINARY);
buffcount = 4;
}