1 #ifndef lint 2 static char sccsid[] = "@(#)label.c 4.1 (Berkeley) 11/10/83"; 3 #endif 4 5 #include "hp2648.h" 6 7 label(s) 8 char *s; 9 { 10 handshake(); 11 putchar(ESC); 12 putchar(GRAPHIC); 13 putchar('l'); 14 for(;*s!='\0';s++) 15 putchar(*s); 16 putchar(ESC); 17 putchar(GRAPHIC); 18 putchar('d'); 19 putchar('T'); 20 handshake(); 21 putchar(ESC); 22 putchar(GRAPHIC); 23 putchar(PLOT); 24 putchar(BINARY); 25 buffcount = 4; 26 } 27