home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
273_01
/
strxform.cc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1987-10-06
|
249 b
|
11 lines
str_xform(char *str,char from,char to)
/* This function will transform all characters in the string pointed to
by *str that are the same as the from character to the to char.
*/
{
while(*str) {
if(*str==from) *str=to;
str++;
}
}