1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
/* libjodycode: access() stdio call
*
* Copyright (C) 2014-2026 by Jody Bruchon <jody@jodybruchon.com>
* Released under The MIT License
*/
#include <errno.h>
#include <stdio.h>
#ifndef ON_WINDOWS
#include <unistd.h>
#endif
#include "likely_unlikely.h"
#include "libjodycode.h"
#ifdef UNICODE
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <io.h>
#endif
/* Check file exist/read/write, converting for Windows if necessary */
int jc_access(const char *pathname, int mode)
{
int retval;
#ifdef UNICODE
JC_WCHAR_T *widename;
#endif
if (unlikely(pathname == NULL)) {
jc_errno = EFAULT;
return -1;
}
#ifdef ON_WINDOWS
#ifdef UNICODE
if (jc_string_to_wstring(pathname, &widename) != 0) {
jc_errno = ENOMEM;
return -1;
}
retval = _waccess(widename, mode);
free(widename);
#else
retval = _access(pathname, mode);
#endif
#else
retval = access(pathname, mode);
#endif
if (retval != 0) jc_errno = errno;
return retval;
}
|