home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / cb / sources / strip.c < prev    next >
Encoding:
Text File  |  1985-07-22  |  256 b   |  13 lines

  1. /*
  2. ** strip -- Strip <, >, and " from str.
  3. */
  4. strip(str) char *str; {
  5.   char *cp;
  6.   cp = str - 1;
  7.   while(*++cp = *str++) {
  8.     switch(*cp) {
  9.       case '<':  case '>':  case '"':  --cp;
  10.       }
  11.     }
  12.   }
  13.