home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / LEFT.C < prev    next >
Text File  |  1987-10-04  |  256b  |  10 lines

  1. /*
  2. ** left -- left adjust and null terminate a string
  3. */
  4. left(str) char *str; {
  5.   char *str2;
  6.   str2=str;
  7.   while(*str2==' ') ++str2;
  8.   while(*str++ = *str2++);
  9.   }
  10.