148508Sbostic /*- 2*61388Sbostic * Copyright (c) 1980, 1993 3*61388Sbostic * The Regents of the University of California. All rights reserved. 448508Sbostic * 548508Sbostic * %sccs.include.proprietary.c% 619974Sdist */ 719974Sdist 815490Sralph #ifndef lint 9*61388Sbostic static char sccsid[] = "@(#)label.c 8.1 (Berkeley) 06/04/93"; 1048508Sbostic #endif /* not lint */ 1115490Sralph 1215490Sralph #include "gigi.h" 1315490Sralph label(s)1415490Sralphlabel(s) 1515490Sralph char *s; 1615490Sralph { 1715490Sralph printf("T(S0 H2 D0 I0) \""); 1815490Sralph for(;*s!='\0';s++) { 1915490Sralph putchar(*s); 2015490Sralph if (*s == '"') putchar('"'); 2115490Sralph } 2215490Sralph putchar('"'); 2315490Sralph } 24