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