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 / oswatful.c < prev    next >
Text File  |  2005-02-06  |  287b  |  11 lines

  1. /* $Id: oswatful.c,v 1.2 2004/07/11 09:29:15 ozzmosis Exp $ */
  2.  
  3. /* make an absolute path from given relative path */
  4. int os_fullpath(char *dst, const char *src, size_t bufsiz)
  5. {
  6.     if (!_fullpath(dst, src, bufsiz))
  7.         return -1;
  8.     os_filecanonify(dst);
  9.     return 0;
  10. }
  11.