home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / byte_sc / left.c < prev    next >
Encoding:
Text File  |  1987-10-04  |  256 b   |  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.