home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 May
/
W2KPRK.iso
/
apps
/
posix
/
source
/
DEVSRV
/
FOR2BAK.C
< prev
next >
Wrap
C/C++ Source or Header
|
1999-11-17
|
266b
|
18 lines
#include <stdio.h>
/*
* For2bak: Converts a string's fore slashes to back slashes. MSS
*/
void for2bak(char * str)
{
char *ptr;
while (*str) {
if (ptr = strchr(str, ":"))
str = ptr+1;
if(*str == '/')
*str = '\\';
str++;
}
}