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
/
osmscful.c
< prev
next >
Wrap
Text File
|
2005-02-06
|
329b
|
15 lines
/* $Id: osmscful.c,v 1.1 2004/07/18 10:51:37 ozzmosis Exp $ */
#define HAVE_OS_FULLPATH
/* make an absolute path from given relative path */
int os_fullpath(char *dst, const char *src, size_t bufsiz)
{
if (!_fullpath(dst, src, bufsiz))
{
return -1;
}
os_filecanonify(dst);
return 0;
}