home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / MISC / MNLDOS.ZIP / src / osemxful.c < prev    next >
Text File  |  2004-07-11  |  310b  |  14 lines

  1. /* $Id: osemxful.c,v 1.2 2004/07/11 09:29:14 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.     int result;
  9.  
  10.     result = _fullpath(dst, src, bufsiz);
  11.     os_filecanonify(dst);
  12.     return result;
  13. }
  14.