php-src/win32/wfile.c

18 lines
327 B
C
Raw Normal View History

1999-04-07 21:05:13 +00:00
/* Function borrowed from the Downhill Project */
#include "wfile.h"
#include "direct.h"
int readlink(char *file_Name, char *buf_Mem, int buf_Size)
{
/* See if the file exists */
2008-07-20 20:17:48 +00:00
if (access(file_Name, WFILE_EXISTS) == -1) {
1999-04-07 21:05:13 +00:00
errno = ENOENT;
} else {
errno = EINVAL;
}
/* Either way, it's not a link */
return -1;
}