home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 273_01 / striprng.cc < prev    next >
Text File  |  1987-09-27  |  336b  |  15 lines

  1. striprange(char *str,char clo,char chi)
  2. /* This will strip all occurances of the characters that fall between
  3.    char clo and chi out of the string pointed to by *str.
  4. */
  5. {
  6.    char *newstr;
  7.  
  8.    newstr = str;
  9.    while (*str) {
  10.       if ((*str > chi) | (*str < clo))
  11.      *newstr++ = *str;
  12.       str++; }
  13.    *newstr = '\0';
  14. }
  15.