home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.wwiv.com
/
ftp.wwiv.com.zip
/
ftp.wwiv.com
/
pub
/
MISC
/
MN325SRC.ZIP
/
makenl-3.2.5
/
src
/
osgendsl.c
< prev
next >
Wrap
C/C++ Source or Header
|
2005-02-06
|
329b
|
17 lines
/* $Id: osgendsl.c,v 1.2 2004/07/11 09:29:14 ozzmosis Exp $ */
/* converts slashes to backslashes for pathnames under DOS or EMX */
char *os_deslashify(char *name)
{
char *p;
p = name;
while (*p != 0)
if (*p == '/')
*p++ = '\\';
else
++p;
return name;
}