#ifndef lint static char sccsid[] = "@(#)label.c 1.1 (Berkeley) 01/02/85"; #endif label_(s, len) register char *s; long len; { char buf[260]; register char *cp, *cend; cp = buf; cend = cp + (len < 255 ? len : 255 ); while ( cp < cend ) *cp++ = *s++; *cp = 0; label( buf ); }