home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / MISC / MN321SRC.ZIP / osmscful.c < prev    next >
Text File  |  2004-07-18  |  315b  |  15 lines

  1. /* $Id: osmscful.c,v 1.1 2004/07/18 10:51:37 ozzmosis Exp $ */
  2.  
  3. #define HAVE_OS_FULLPATH
  4.  
  5. /* make an absolute path from given relative path */
  6. int os_fullpath(char *dst, const char *src, size_t bufsiz)
  7. {
  8.     if (!_fullpath(dst, src, bufsiz))
  9.     {
  10.         return -1;
  11.     }
  12.     os_filecanonify(dst);
  13.     return 0;
  14. }
  15.