#ifndef lint static char sccsid[] = "@(#)label.c 4.1 (Berkeley) 11/10/83"; #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; }