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 / osgengtn.c < prev    next >
Text File  |  2005-02-06  |  398b  |  19 lines

  1. /* $Id: osgengtn.c,v 1.2 2004/07/11 09:29:14 ozzmosis Exp $ */
  2.  
  3. char *os_file_getname(const char *path)
  4. {
  5.     const char *p;
  6.  
  7.     p = path;
  8.     while (*path != 0)
  9.         switch (*path++)
  10.         {
  11.         case ':':
  12.         case '/':
  13.         case '\\':
  14.             p = path;           /* Note that PATH has been incremented */
  15.             break;
  16.         }
  17.     return (char *)p;
  18. }
  19.