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 >
C/C++ Source or Header  |  2005-02-06  |  329b  |  17 lines

  1. /* $Id: osgendsl.c,v 1.2 2004/07/11 09:29:14 ozzmosis Exp $ */
  2.  
  3. /* converts slashes to backslashes for pathnames under DOS or EMX */
  4. char *os_deslashify(char *name)
  5. {
  6.     char *p;
  7.  
  8.     p = name;
  9.     while (*p != 0)
  10.         if (*p == '/')
  11.             *p++ = '\\';
  12.         else
  13.             ++p;
  14.  
  15.     return name;
  16. }
  17.