home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
273_01
/
strip.cc
< prev
next >
Wrap
Text File
|
1987-09-27
|
284b
|
17 lines
strip(char *str, char c)
/* This will string all occurances of char c out of string pointed to by *str */
{
char *newstr;
newstr = str;
while (*str) {
if (*str != c) {
*newstr=*str;
newstr++;
str++;
}
else str++;
}
*newstr = '\0';
}